/* Reset & Base Styles */

@import url(font/font.css);
html{
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'gilroy-bold';

    color: #fff;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(184, 157, 216, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-container img{
    width: 100px;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0ecf5 0%, #e8e0f0 100%);
    border: 2px solid #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9076c4;
    font-weight: 700;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo-text em {
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

/* Section 1: Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, #b89dd8 0%, #a88dcc 50%, #9076c4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 60px 40px;
    position: relative;
    overflow: hidden;
}

/* Carousel Styles */
.carousel-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-slides {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    display: flex;
    opacity: 1;
    position: relative;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: #fff;
    width: 40px;
    border-radius: 6px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.hero-header {
    margin-bottom: 40px;
}

.brand {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.brand img {
    max-width: 100px;
}

.tagline {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-left: 15px;
}

.subtitle {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 2px;
}

.hero-main {
    margin-bottom: 80px;
    max-width: 1000px;
}

.main-headline {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sub-headline {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.hero-footer {
    max-width: 700px;
}

.description {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
    margin-bottom: 2px;
}

.arrow {
    font-size: 28px;
    margin: 25px 0;
    font-weight: 300;
}

.cta-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 5px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cta-btn:hover {
    background: #fff;
}
.cta-btn a{
    text-decoration: none;
    color: #fff;
}
.cta-btn a:hover{
    color: #9076c4;

}

/* Carousel Responsive */
.carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-slides {
    min-height: 60vh;
}

/* Section 2: Discover */
.section-2 {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 60px;
    gap: 100px;
}

.section-2-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.discover-box {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.discover-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.discover-text {
    position: relative;
    z-index: 10;
    text-align: left;
}

.discover-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #9076c4;
    margin-bottom: 5px;
}

.discover-brand {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 20px;
}

.discover-brand em {
    font-style: italic;
    font-weight: 300;
}

.discover-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000;
    line-height: 1.6;
    max-width: 300px;
}

.section-2-right {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.section-2-text {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section-2-tagline {
    font-size: 28px;
    font-weight: 400;
    color: #9076c4;
    line-height: 1.4;
    /* margin-top: 30px; */
}
.section-2-tagline img{
    max-width: 150px;
}

/* Section 3: Multi-Action Science */
.section-3 {
    min-height: 50vh;
    background: #f0ecf5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 40px;
}

.section-3-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #a88dcc;
    line-height: 1.2;
    margin-bottom: 10px;
}

.section-3-brand {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #a88dcc;
    margin-bottom: 10px;
}

.section-3-brand img {
  max-width: 200px;
}

.section-3-arrow {
    margin-top: 20px;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #a88dcc;
    border-radius: 50%;
    font-size: 24px;
    color: #a88dcc;
    font-weight: 300;
}

/* Section 4: Products */
.section-4 {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    gap: 60px;
}

.product-left {
    flex: 1;
    max-width: 380px;
    text-align: left;
}
.product-left img{
    position: absolute;
    max-height: 70%;
    max-width: 100%;
    left: -30px;
}

.flower-illustration {
    margin-bottom: 30px;
    display: block;
}

.clinically-backed {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #a88dcc;
    line-height: 1.1;
    margin-bottom: 30px;
}

.why-love {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #a88dcc;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.benefits-list li {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.clear-skin-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #a88dcc;
    line-height: 1.4;
}

.clear-skin-text strong {
    font-weight: 700;
}

.product-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-logo {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #a88dcc;
    margin-bottom: 5px;
}

.product-logo img {
    max-width: 150px;
}

.product-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #a88dcc;
    margin-bottom: 20px;
}

.product-ingredients {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 280px;
}

.product-image-placeholder {
    width: 100%;
    height: 220px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-placeholder img{
    max-width: 100%;
}
.placeholder-box {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f0ecf5 0%, #e8e0f0 100%);
    border: 2px dashed #d0c4e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-tagline {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #a88dcc;
    margin-bottom: 20px;
}

.buy-btn {
    background: #a88dcc;
    color: #fff;
    border: none;
    padding: 12px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.buy-btn a{
    color: #fff;
    text-decoration: none;
}

.buy-btn:hover {
    background: #9076c4;
    transform: translateY(-2px);
}

/* Section 5: The Science */
.section-5 {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
}

.section-5-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #a88dcc;
    margin-bottom: 10px;
}

.section-5-brand {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #a88dcc;
}

.section-5-brand img {
    max-width: 200px;
}

.section-5-subtitle {
    font-size: 24pt;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 60px;
}

.section-5-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

.science-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.science-illustration-placeholder {
    width: 100%;
    max-width: 450px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.science-illustration-placeholder img{
    max-width: 100%;
}
.illustration-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #faf9fc 0%, #f0ecf5 100%);
    border: 2px dashed #d0c4e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a88dcc;
    font-size: 16px;
    font-weight: 400;
}

.science-right {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.science-item {
    margin-bottom: 30px;
}

.science-heading {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #a88dcc;
}

.science-text {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

/* Section 6: Acnewin Advantage */
.section-6 {
    min-height: 80vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    gap: 100px;
}

.advantage-left {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.advantage-title {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #a88dcc;
    margin-bottom: 30px;
    line-height: 1.2;
}

.advantage-title img {
    max-width: 150px;
}

.advantage-title sub {
    font-size: 0.6em;
    vertical-align: baseline;
    position: relative;
    top: 0.2em;
}

.advantage-subtitle {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #a88dcc;
    margin-bottom: 40px;
}

.advantage-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.advantage-text {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}

.advantage-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
}

.lipo-bead-illustration {
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lipo-bead-illustration img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.advantage-title-bold {
    font-weight: 700;
}

/* Section 7: Your Daily Anti-Acne Ritual */
.section-7 {
    position: relative;
    min-height: 600px;
    /* background: #ffffff; */
    overflow: hidden;
    background-image: url(images/01-07.png);
    background-size:cover ;

}

.section-7-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.section-7-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 80px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.ritual-left {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.ritual-title {
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 0px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 50px;
}

.ritual-step {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ritual-tip {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.6;
    margin-top: 30px;
}

.ritual-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    max-width: 600px;
}

.routine-badge {
    position: absolute;
    top: -290px;
    right: 0;
    z-index: 10;
}

.routine-text {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000000;
    line-height: 1.3;
    text-align: right;
}

.face-circle {
    width: 450px;
    height: 450px;
    background: #ffffff;
    border-radius: 50%;
    border: 4px solid #d8c4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.face-placeholder {
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a88dcc;
    font-size: 16px;
    font-weight: 400;
}

/* Section 8: Footer Contact Section */
.section-8 {
    min-height: 60vh;
    background: linear-gradient(135deg, #9b7bbf 0%, #b99dd6 50%, #a88dcc 100%);
    display: flex;
    position: relative;
    padding: 80px 60px;
    overflow: hidden;
}



.section-8-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 100px;
}

.product-image-container {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-certificate {
    width: 100%;
    height: auto;
    /* transform: rotate(-5deg); */
    /* filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3)); */
}
.go-top{
    display: inline-block;
    position: absolute;
    right: 50px;
    background: #d8c4e8;
    border: 2px solid #fff;
    border-radius: 50%;
    height: 34px;
    width: 34px;
    text-align: center;
    vertical-align: middle;
    line-height: 41px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    bottom: 70px;
}
.Section7_1 {
    padding: 80px 100px;
}
.Section7_1 h2{
    color: #a88dcc;
    text-align: center;
    margin-bottom: 30px;
}
.testinmonial_quote {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
    position: relative;

}
.seperator{
    position: absolute;
    width: 100px;
    height: 1px;
    background:  #a88dcc;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -20px;
}
.testinmonial_quote .testinmonial_person{
    color: #a88dcc;

}
.footer-right {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-end;
    text-align: right;
}

.footer-brand {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1;
}

.footer-brand img {
    max-width: 50%;
}

.footer-tagline {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 10px 0 0 0;
}

.footer-contact {
    margin-top: 20px;
}

.contact-line a,
.social-line a{
    color: #fff;
    text-decoration: underline;
}
.contact-line,
.social-line {
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0;
    letter-spacing: 0.5px;
}

.footer-company {
    margin-top: 30px;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.amwill-logo {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    border-right: 2px solid white;
    padding-right: 20px;
}
.amwill-logo img{
    max-width: 50%;
}

.company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.company-subtext {
    font-size: 11px;
    font-weight: 400;
    margin: 2px 0 0 0;
    opacity: 0.9;
}

.company-address {
    font-size: 13px;
    font-weight: 400;
    margin: 10px 0 5px 0;
    line-height: 1.5;
}

.trademark {
    font-size: 11px;
    font-weight: 400;
    margin: 5px 0 0 0;
    opacity: 0.8;
}
.footer-copyright{
    background: linear-gradient(135deg, #9b7bbf 0%, #b99dd6 50%, #a88dcc 100%);
    padding: 20px;
    font-size: 14px
}

/* Responsive Design - Mobile & Tablet */
@media (max-width: 768px) {
    /* Header Navigation */
    .header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu li a {
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 20px;
    }

    .hero-header {
        margin-bottom: 40px;
    }

    .brand {
        font-size: 18px;
    }

    .tagline {
        font-size: 11px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .subtitle {
        font-size: 11px;
    }

    .hero-main {
        margin-bottom: 80px;
    }

    .main-headline {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .sub-headline {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .description {
        font-size: 13px;
    }

    .cta-btn {
        font-size: 12px;
        padding: 10px 20px;
    }

    /* Section 2: Discover */
    .section-2 {
        flex-direction: column;
        padding: 20px 30px;
        gap: 40px;
    }

    .discover-box {
        /* width: 100%; */
        /* max-width: 350px; */
        /* height: auto; */
        height: 280px;
        width: 320px;
    }

    .section-2-right {
        max-width: 100%;
    }

    .section-2-text {
        font-size: 14px;
    }

    .section-2-tagline {
        font-size: 20px;
    }

    /* Section 3 */
    .product-left img{
        display: none;
    }
    .section-3 {
        padding: 60px 30px;
    }

    .section-3-title {
        font-size: 36px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .section-3-brand {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .arrow-circle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Section 4: Products */
    .section-4 {
        flex-direction: column;
        padding: 60px 30px;
        gap: 50px;
    }

    .product-left {
        max-width: 100%;
        text-align: center;
    }

    .flower-illustration {
        margin: 0 auto 30px;
    }

    .clinically-backed {
        font-size: 36px;
    }

    .product-card {
        max-width: 100%;
    }

    .product-logo {
        font-size: 36px;
    }

    /* Section 5: The Science */
    .section-5 {
        padding: 60px 30px;
    }

    .section-5-title {
        font-size: 32px;
    }

    .section-5-brand {
        font-size: 32px;
    }

    .section-5-subtitle {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .section-5-content {
        flex-direction: column;
        gap: 40px;
    }

    .science-illustration-placeholder {
        max-width: 100%;
        height: 300px;
    }

    .science-right {
        max-width: 100%;
    }

    .science-item {
        margin-bottom: 25px;
    }

    /* Section 6: Advantage */
    .section-6 {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .advantage-left {
        max-width: 100%;
        text-align: center;
    }

    .advantage-title {
        font-size: 36px;
    }

    .advantage-subtitle {
        font-size: 16px;
    }

    .advantage-text {
        font-size: 14px;
    }

    .advantage-right {
        max-width: 100%;
    }

    .lipo-bead-illustration {
        max-width: 350px;
    }

    /* Section 7: Ritual */
   
    .section-7-content {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .ritual-left {
        max-width: 100%;
        text-align: center;
    }

    .ritual-title {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .ritual-step {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .ritual-tip {
        font-size: 16px;
        margin-top: 20px;
    }

    .ritual-right {
        max-width: 100%;
        align-items: center;
    }

    .routine-badge {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .routine-text {
        font-size: 24px;
        text-align: center;
    }

    .face-circle {
        width: 320px;
        height: 320px;
        margin-top: 0;
    }

    /* Section 8: Footer */
    .section-8 {
        padding: 60px 30px;
        flex-direction: column;
    }

    

    .section-8-content {
        flex-direction: column;
        gap: 50px;
    }

    .product-image-container {
        flex: 0 0 auto;
    }

    .product-certificate {
        max-width: 300px;
    }

    .footer-brand {
        font-size: 60px;
    }

    .footer-tagline {
        font-size: 18px;
    }

    .amwill-logo {
        font-size: 28px;
        padding-left: 15px;
    }

    .company-name {
        font-size: 14px;
    }

    .company-subtext {
        font-size: 10px;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 50px 30px;
    }

    .main-headline {
        font-size: 52px;
    }

    .sub-headline {
        font-size: 52px;
    }

    .section-2 {
        padding: 40px 40px;
        gap: 60px;
    }

    .discover-box {
        width: 400px;
        height: 400px;
    }

    .section-4 {
        padding: 70px 40px;
        gap: 40px;
    }

    .product-card {
        max-width: 280px;
    }

    .section-5-content {
        gap: 60px;
    }

    .section-6 {
        padding: 70px 40px;
        gap: 60px;
    }

    .advantage-title {
        font-size: 48px;
    }

    .advantage-right {
        max-width: 400px;
    }
}