@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Parkinsans:wght@300..800&family=Quicksand:wght@300..700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

body {
    padding: 10px;
    background-color: #222222;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package {
    background-color: white;
    width: 420px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.package-top {
    padding-top: 30px;
    width: 100%;
    text-align: center;
    background-color: #f27a9d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 3px;
    padding-bottom: 100px;
    position: relative;
}

.package-header {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    font-weight: 800;
    font-family: "Parkinsans", sans-serif;
}

.package-text {
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 500;
}

.package-text-bold {
    font-size: 20px;
    margin-top: 5px;
    font-weight: 800;
}

.package-price-container {
    background-color: white;
    width: 200px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.package-top::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 40px;
    width: 20px;
    height: 80px;
    background-color: white;
    border-radius: 10px;
    transform: rotate(45deg);
}

.package-top::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 20px;
    height: 80px;
    background-color: white;
    border-radius: 10px;
    transform: rotate(45deg);
}

.package-price {
    color: #f27a9d;
    font-size: 46px;
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.package-price-tl {
    font-size: 34px;
    margin-top: 5px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.package-price-small {
    font-size: 38px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.package-price-text {
    color: #f27a9d;
    font-size: 25px;
    margin-top: -5px;
    font-weight: 500;
}

.package-mid {
    margin-top: 80px;
    width: 100%;
}

.package-mid-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-mid-row-content {
    display: flex;
    align-items: center;
    padding: 14px 30px;
    width: 80%;
    font-family: "Parkinsans", sans-serif;
    color: #535353;
}

.package-mid-row:nth-child(odd) {
    background-color: #f1f5fb;
}

.package-mid-row:nth-child(4) {
    background-color: #f27a9d;
    color: white;
}

.package-row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #f27a9d;
    
}

.package-row-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 24px;
    font-weight: bold;
}

.package-mid-row:nth-child(4) .package-row-icon {
    color: white;
}

.package-mid-row:nth-child(4) .package-row-text::after {
    content: "Kurgu Dahildir.";
    display: block;
    font-size: 12px;
    margin-top: 3px;
}

.package-row-text {
    font-size: 16px;
}

.package-bottom {
    width: 100%;
    padding: 25px 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-bottom-btn {
    background-color: #f27a9d;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 80px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

.package-bottom-btn:hover {
    background-color: #e05d83;
}