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

:root {
    --gold: #FFC107;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #B8B8B8;
    --light-gray: #E8E8E8;
    --text-dark: #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 30px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    gap: 15px;
}

.logo-image {
    width: 150px;
    height: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-gold {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

.logo-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.nav-contact-btn {
    background: var(--black);
    color: var(--white) !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.nav-contact-btn:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-more {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background: var(--gold);
    padding: 0;
    min-height: 100vh;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    padding-top: 100px;
}

.hero-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 40px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 50px;
    max-width: 540px;
}

.hero-right {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Comparison Section */
.comparison-section {
    background: var(--white);
    padding: 20px 0 140px 0;
    position: relative;
}

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

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    user-select: none;
    cursor: ew-resize;
}

.comparison-image {
    position: relative;
    width: 100%;
}

.comparison-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.before-image {
    position: relative;
}

.before-image img {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.05s ease;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.after-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.05s ease;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    cursor: ew-resize;
    transform: translateX(-50%);
    transition: left 0.05s ease;
    z-index: 10;
    pointer-events: all;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Key Features Section */
.features-section {
    background: var(--white);
    padding: 40px 0 120px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: #FFF9E6;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--black);
}

.feature-card:hover .feature-icon svg path,
.feature-card:hover .feature-icon svg rect,
.feature-card:hover .feature-icon svg circle[stroke] {
    stroke: var(--gold);
}

.feature-card:hover .feature-icon svg circle[fill]:not([stroke]) {
    fill: var(--gold);
}

.feature-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 44px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
}

.feature-card:hover .feature-list li::before {
    animation: checkBounce 0.6s ease;
}

@keyframes checkBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Why GoldLabel Section */
.why-section {
    background: var(--gold);
    padding: 40px 0 80px 0;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.why-left {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px 80px 120px;
}

.why-image-container {
    max-width: 100%;
}

.why-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.why-right {
    padding: 80px 120px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 30px;
}

.why-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 20px;
    opacity: 0.9;
}

.why-description:last-of-type {
    margin-bottom: 40px;
}

.why-right .btn-learn-more {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-right .btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-address {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-email {
    font-size: 15px;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--white);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 0;
    overflow: visible;
}

.footer-supported-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 45px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: 0;
}

.footer-logo-item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-item img {
    max-height: 100%;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

.footer-logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Our Story Section */
.our-story-section {
    background: var(--light-gray);
    padding: 180px 0 120px 0;
    min-height: 80vh;
}

.our-story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.our-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.our-story-left {
    max-width: 600px;
}

.our-story-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 40px;
}

.our-story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.our-story-text p:last-child {
    margin-bottom: 0;
}

.our-story-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-story-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.our-story-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Meet the Team Section */
.team-section {
    background: var(--gold);
    padding: 100px 0;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 70px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-photo-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.team-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 8px;
}

.team-role {
    font-size: 15px;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 12px;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.team-linkedin:hover {
    background: var(--white);
    color: var(--black);
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
    padding: 180px 0 120px 0;
    min-height: 80vh;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-left {
    max-width: 500px;
}

.contact-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-email,
.contact-address {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.required {
    font-weight: 400;
    opacity: 0.7;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.field-wrapper {
    display: flex;
    flex-direction: column;
}

.field-sublabel {
    font-size: 12px;
    color: var(--text-dark);
    margin-top: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq-section {
    background: #FFFBF0;
    padding: 100px 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 100px;
    align-items: start;
}

.faq-main-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--black);
    position: sticky;
    top: 100px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    background: none;
    border: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--black);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #666;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 0 28px 0;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    padding-right: 60px;
}

/* Feature Section */
.feature {
    background: var(--gold);
    padding: 0;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.feature-left {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

.feature-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 50px;
    max-width: 540px;
}

.btn-learn-more {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: fit-content;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.feature-right {
    position: relative;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }

    .hero-left {
        padding: 60px 60px 60px 80px;
    }

    .hero-right {
        padding: 60px 80px 60px 40px;
    }

    .feature-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 42px;
    }

    .comparison-section {
        padding: 15px 0 80px 0;
    }

    .features-section {
        padding: 30px 0 80px 0;
    }

    .features-grid {
        gap: 30px;
    }

    .why-section {
        padding: 30px 0 60px 0;
    }

    .why-content {
        gap: 30px;
    }

    .why-left {
        padding: 60px 40px;
    }

    .why-right {
        padding: 60px 80px 60px 40px;
    }

    .why-title {
        font-size: 48px;
    }

    .footer-container {
        padding: 0 40px;
    }

    .footer-content {
        gap: 60px;
    }

    .footer-logos {
        gap: 40px;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-container {
        padding: 0 40px;
        gap: 80px;
    }

    .faq-main-title {
        font-size: 38px;
    }

    .faq-question {
        font-size: 20px;
    }

    .our-story-section {
        padding: 160px 0 100px 0;
    }

    .our-story-container {
        padding: 0 40px;
    }

    .our-story-content {
        gap: 80px;
    }

    .our-story-title {
        font-size: 48px;
    }

    .team-section {
        padding: 80px 0;
    }

    .team-container {
        padding: 0 40px;
    }

    .team-title {
        font-size: 38px;
        margin-bottom: 60px;
    }

    .team-grid {
        gap: 50px;
    }

    .contact-section {
        padding: 160px 0 100px 0;
    }

    .contact-container {
        padding: 0 40px;
    }

    .contact-content {
        gap: 80px;
    }

    .contact-title {
        font-size: 48px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 40px;
    }

    .nav {
        gap: 25px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        padding: 40px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 48px;
    }

    .feature-content {
        grid-template-columns: 1fr;
    }

    .feature-left {
        padding: 80px 60px;
    }

    .feature-right {
        min-height: 500px;
    }

    .feature-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .comparison-section {
        padding: 10px 0 60px 0;
    }

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

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

    .features-section {
        padding: 20px 0 60px 0;
    }

    .why-section {
        padding: 20px 0 60px 0;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .why-left {
        padding: 60px 40px;
    }

    .why-right {
        padding: 40px 40px 60px 40px;
    }

    .why-title {
        font-size: 42px;
    }

    .footer {
        padding: 50px 0 25px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-logos {
        justify-content: flex-start;
        gap: 35px;
        flex-wrap: wrap;
    }

    .footer-logo-item {
        height: 65px;
    }

    .footer-logo-item img {
        max-width: 160px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .faq-main-title {
        font-size: 36px;
        position: static;
    }

    .faq-question {
        font-size: 19px;
        padding: 24px 0;
    }

    .faq-answer p {
        padding-right: 20px;
    }

    .our-story-section {
        padding: 140px 0 80px 0;
    }

    .our-story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .our-story-left {
        max-width: 100%;
    }

    .our-story-title {
        font-size: 42px;
    }

    .our-story-image-wrapper {
        max-width: 400px;
    }

    .team-section {
        padding: 70px 0;
    }

    .team-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .team-photo-wrapper {
        width: 180px;
        height: 180px;
    }

    .contact-section {
        padding: 140px 0 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-left {
        max-width: 100%;
    }

    .contact-title {
        font-size: 42px;
    }

    .contact-image-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 24px;
    }

    .header {
        padding: 20px 0;
    }

    .logo-image {
        width: 100px;
    }

    .logo-gold,
    .logo-label {
        font-size: 22px;
    }

    .nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
    }

    .nav-contact-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .tag-body {
        width: 200px;
        height: 300px;
    }

    .feature-left {
        padding: 60px 30px;
    }

    .feature-title {
        font-size: 36px;
    }

    .feature-description {
        font-size: 15px;
    }

    .btn-learn-more {
        padding: 16px 40px;
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .comparison-section {
        padding: 10px 0 40px 0;
    }

    .comparison-label {
        padding: 8px 16px;
        font-size: 12px;
    }

    .before-label {
        left: 10px;
    }

    .after-label {
        right: 10px;
    }

    .slider-button {
        width: 40px;
        height: 40px;
    }

    .slider-button svg {
        width: 24px;
        height: 24px;
    }

    .features-section {
        padding: 40px 0;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon svg {
        width: 50px;
        height: 50px;
    }

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

    .feature-list li {
        font-size: 15px;
    }

    .why-section {
        padding: 10px 0 40px 0;
    }

    .why-left {
        padding: 40px 30px;
    }

    .why-right {
        padding: 30px 30px 40px 30px;
    }

    .why-title {
        font-size: 32px;
    }

    .why-description {
        font-size: 15px;
    }

    .footer {
        padding: 40px 0 20px 0;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-content {
        padding-bottom: 30px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-address,
    .footer-email {
        font-size: 14px;
    }

    .footer-supported-title {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .footer-logos {
        gap: 25px;
        flex-wrap: wrap;
    }

    .footer-logo-item {
        height: 55px;
    }

    .footer-logo-item img {
        max-width: 140px;
    }

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

    .footer-bottom p {
        font-size: 12px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 24px;
    }

    .faq-main-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 17px;
        padding: 20px 0;
    }

    .faq-icon {
        font-size: 24px;
    }

    .faq-answer p {
        font-size: 15px;
        padding-right: 0;
    }

    .our-story-section {
        padding: 120px 0 60px 0;
    }

    .our-story-container {
        padding: 0 24px;
    }

    .our-story-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .our-story-text p {
        font-size: 15px;
    }

    .our-story-image-wrapper {
        max-width: 100%;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-container {
        padding: 0 24px;
    }

    .team-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-photo-wrapper {
        width: 160px;
        height: 160px;
    }

    .team-name {
        font-size: 18px;
    }

    .team-role {
        font-size: 14px;
    }

    .contact-section {
        padding: 120px 0 60px 0;
    }

    .contact-container {
        padding: 0 24px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-intro {
        font-size: 14px;
    }

    .name-fields {
        grid-template-columns: 1fr;
    }

    .contact-image-wrapper {
        max-width: 100%;
    }
}
