:root {
    --pink: #ea7e93;
    --dark-blue: #0b2c5a;
    --light-blue: #4a90e2;
    --aqua: #2ca9b8;
    --bg-color: #f7fafc;
    --text-color: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 70px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--pink);
}

.nav-btn {
    background-color: var(--pink);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s, transform 0.2s;
}

.nav-btn:hover {
    background-color: #d16b7f;
    color: white;
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, rgba(44, 169, 184, 0.85), rgba(74, 144, 226, 0.85)), url('https://images.unsplash.com/photo-1519635032594-e3fb65e4d211?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: var(--pink);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(234, 126, 147, 0.4);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #d16b7f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(234, 126, 147, 0.6);
}

.btn-alt {
    background-color: var(--aqua);
    box-shadow: 0 4px 15px rgba(44, 169, 184, 0.4);
}

.btn-alt:hover {
    background-color: #248b98;
    box-shadow: 0 6px 20px rgba(44, 169, 184, 0.6);
}

/* ABOUT SECTION (BIO CARD) */
.about-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.bio-card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    width: 100%;
    align-items: center;
}

.bio-photo {
    width: 45%;
    height: 100%;
    object-fit: cover;
}

.bio-text {
    width: 55%;
    padding: 50px;
}

.bio-text h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.bio-text h3 {
    color: var(--aqua);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-text p {
    margin-bottom: 15px;
    color: #555;
}

/* PAGE HEADERS */
.page-header {
    background-color: var(--light-blue);
    color: white;
    text-align: center;
    padding: 60px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.page-header h1 {
    font-size: 2.5rem;
}

/* FAQ SECTION */
.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-left: 5px solid var(--aqua);
}

.faq-item h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.faq-item ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-item li {
    margin-bottom: 5px;
}

/* POLICY SECTION */
.policy-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.policy-container {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.policy-container h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.policy-container p {
    margin-bottom: 30px;
    color: #555;
}

/* FOOTER */
footer {
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bio-card {
        flex-direction: column;
    }
    .bio-photo {
        width: 100%;
        height: 300px;
    }
    .bio-text {
        width: 100%;
        padding: 30px;
    }
}

/* PRICING SECTION */
.pricing-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
    text-align: center;
}

.pricing-header h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.pricing-header p {
    color: #555;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-card h3 {
    color: var(--aqua);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-card .price {
    color: var(--dark-blue);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-card .price span {
    font-size: 1.2rem;
    color: #777;
    font-weight: 400;
}

.price-card p {
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-card.featured {
    border: 3px solid var(--pink);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--pink);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(234, 126, 147, 0.4);
}

@media (max-width: 768px) {
    .price-card.featured {
        transform: scale(1);
    }
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
}