@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --color1: #382b4d;
    --color1-sd: #382b4d5c;
    --color1x: #263653e3;
    --color2: #db3571;
    --color2-sd: #db35714d;
    --color3: #515151;
    --color4: #6481db;
    --text-color1: #666;
    --bg-primary: #f8f8f8;
    --bg-secondary: #ffffff;
    --shadow-light: 0px 5px 30px #00000015;
    --shadow-medium: 0px 10px 40px #00000020;
    --shadow-heavy: 0px 20px 60px #00000025;
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-color1);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 0 15px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.head-nav {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--color1);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo span {
    color: var(--color2);
}

.logo:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: var(--color1);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color1) 0%, var(--color1x) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--color1);
    padding: 12px 28px;
    border: 2px solid var(--color1);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--color1);
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    opacity: 0.03;
    transform: skewX(-15deg);
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-girl {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    position: relative;
    z-index: 3;
}

.hero-girl:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-image-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color2) 0%, var(--color1) 100%);
    border-radius: 30px;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    border-radius: 40px;
    opacity: 0.05;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(219, 53, 113, 0.1);
    color: var(--color2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(219, 53, 113, 0.2);
}

.hero-badge i {
    font-size: 12px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color1);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--color2);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-color1);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.brand-showcase {
    text-align: center;
    margin-top: 40px;
}

.brand-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.brand-tagline {
    font-size: 16px;
    color: var(--text-color1);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--bg-secondary);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: rgba(56, 43, 77, 0.1);
    color: var(--color1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(56, 43, 77, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 18px;
    color: var(--text-color1);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card.instagram .service-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.service-card.tiktok .service-icon {
    background: linear-gradient(135deg, #ff0050 0%, #000000 100%);
}

.service-card.twitter .service-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.service-card.youtube .service-icon {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.service-card.facebook .service-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0d47a1 100%);
}

.service-card.all .service-icon {
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.service-subtitle {
    font-size: 14px;
    color: var(--text-color1);
    margin-bottom: 25px;
    font-weight: 500;
}


.btn-service {
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    box-shadow: var(--shadow-light);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

/* Discount Section */
.discount-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discount-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.discount-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.discount-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.discount-percentage {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    margin: 30px 0;
    animation: bounce 2s ease-in-out infinite;
}

.coupon-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coupon-code {
    background: white;
    color: var(--color1);
    padding: 20px 40px;
    border-radius: var(--border-radius-sm);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.coupon-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.coupon-code:hover::before {
    left: 100%;
}

.copy-btn {
    background: var(--color2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 15px;
    box-shadow: var(--shadow-light);
}

.copy-btn:hover {
    background: #c12d63;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.instruction-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.instruction-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.instruction-number {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--color1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-light);
}

.instruction-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow-light);
}

.testimonial-name {
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 5px;
    font-size: 18px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-color1);
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonial-text {
    color: var(--text-color1);
    font-style: italic;
    line-height: 1.7;
    font-size: 16px;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--color1);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--color1);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color2);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    50% {
        transform: translateY(-20px) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header Mobile Optimization - Hide on mobile */
    .header-area {
        display: none;
    }

    .head-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 0;
    }

    .nav-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
        flex: 1;
        min-width: 120px;
    }

    /* Hero Section Mobile - Adjust padding since header is hidden */
    .hero-section {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-girl {
        max-width: 280px;
        border-radius: 20px;
    }

    .hero-image-bg {
        border-radius: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 40px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        padding: 15px 30px;
        font-size: 16px;
        flex: none;
        min-width: auto;
    }

    .brand-showcase {
        margin-top: 20px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .brand-tagline {
        font-size: 14px;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .service-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .btn-service {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Discount Section Mobile */
    .discount-section {
        padding: 80px 0;
    }

    .discount-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .discount-percentage {
        font-size: 3.5rem;
        margin: 20px 0;
    }

    .coupon-container {
        padding: 20px;
        margin: 30px 10px;
    }

    .coupon-code {
        font-size: 1.3rem;
        padding: 15px 25px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .copy-btn {
        margin-left: 0;
        margin-top: 10px;
        padding: 12px 20px;
        width: 100%;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .instruction-item {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .instruction-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .instruction-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .testimonial-card {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-role {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-rating {
        margin-bottom: 15px;
    }

    .testimonial-rating i {
        font-size: 14px;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links li {
        margin-bottom: 5px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    /* Extra Small Mobile Optimization */
    .container {
        padding: 0 10px;
    }

    /* Header Extra Small - Hide on mobile */
    .header-area {
        display: none;
    }

    .head-nav {
        padding: 10px 0;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Hero Extra Small - Adjust padding since header is hidden */
    .hero-section {
        padding: 30px 0 50px;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 15px;
        padding: 0 5px;
    }

    .hero-girl {
        max-width: 250px;
    }

    .brand-name {
        font-size: 1.7rem;
    }

    /* Services Extra Small */
    .section-title {
        font-size: 1.7rem;
    }

    .section-description {
        font-size: 15px;
        padding: 0 5px;
    }

    .service-card {
        margin: 0 5px;
        padding: 25px 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .service-title {
        font-size: 16px;
    }

    /* Discount Extra Small */
    .discount-title {
        font-size: 1.5rem;
    }

    .discount-percentage {
        font-size: 3rem;
    }

    .coupon-container {
        margin: 20px 5px;
        padding: 15px;
    }

    .coupon-code {
        font-size: 1.1rem;
        padding: 12px 20px;
        letter-spacing: 0.5px;
    }

    .copy-btn {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        width: 100%;
        padding: 12px;
    }

    .instruction-item {
        margin: 0 5px;
        padding: 20px 12px;
    }

    .instruction-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .instruction-title {
        font-size: 14px;
    }

    /* Testimonials Extra Small */
    .testimonial-card {
        margin: 0 5px;
        padding: 20px 15px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .testimonial-name {
        font-size: 15px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    /* Footer Extra Small */
    .footer-content {
        gap: 25px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        line-height: 1.5;
    }
}