* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #00209F;
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #00209F;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header Styles */
.header {
    padding: 25px 0;
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #E62020;
}

.nav {
    display: flex;
    gap: 45px;
    margin-left: auto;
    margin-right: 80px;
}

.nav-link {
    text-decoration: none;
    color: #00209F;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link.active {
    color: #00209F;
}

.nav-link:hover {
    color: #E62020;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #00209F;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #00209F;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.tagline {
    color: #E62020;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #00209F;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: #E62020;
}

/* Mobile hero image - hidden on desktop */
.mobile-hero-image {
    display: none;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-download div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text-small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-text-large {
    font-size: 18px;
    font-weight: 600;
}

/* Hero Right Side */
.hero-right {
    flex: 1;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.couple-image {
    position: relative;
    z-index: 2;
}

.couple-image img {
    max-width: 550px;
    height: auto;
    display: block;
}

/* Decorative Elements */
.decoration-curve-1 {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.decoration-curve-2 {
    position: absolute;
    bottom: 180px;
    left: 80px;
    z-index: 1;
}

.decoration-dotted-arc {
    position: absolute;
    top: 50px;
    left: -60px;
    z-index: 1;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background-color: #E62020;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.icon-heart {
    top: 40px;
    right: 140px;
}

.icon-thumbs-up {
    top: 100px;
    right: 40px;
    animation-delay: 0.5s;
}

.icon-ribbon {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.icon-chat {
    bottom: 200px;
    left: 100px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Profile Badges */
.profile-badge {
    position: absolute;
    background-color: white;
    padding: 12px 20px 12px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

.profile-badge img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-badge span {
    font-weight: 600;
    color: #00209F;
    font-size: 15px;
}

.badge-lucy {
    top: 180px;
    right: 20px;
}

.badge-smith {
    bottom: 280px;
    left: 30px;
}

/* Heart Indicator */
.heart-indicator {
    position: absolute;
    bottom: 230px;
    right: 80px;
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

/* Side Dots */
.side-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E0E0E0;
    transition: all 0.3s;
}

.dot.active {
    background-color: #E62020;
    transform: scale(1.2);
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: #FAFAFA;
    position: relative;
}

.about-decoration-curve {
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 120px;
}

.about-left {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container {
    position: relative;
    z-index: 2;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-image {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
}

/* Leaf Decorations */
.leaf-decoration {
    position: absolute;
    z-index: 1;
    animation: floatLeaf 4s ease-in-out infinite;
}

.leaf-1 {
    top: 30px;
    left: 40px;
    animation-delay: 0s;
}

.leaf-2 {
    top: 80px;
    left: 10px;
    animation-delay: 0.5s;
}

.leaf-3 {
    top: 10px;
    right: 60px;
    animation-delay: 1s;
}

.leaf-4 {
    bottom: 100px;
    left: 20px;
    animation-delay: 1.5s;
}

.leaf-5 {
    bottom: 60px;
    right: 80px;
    animation-delay: 2s;
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.about-right {
    flex: 1;
    max-width: 550px;
}

.section-label {
    font-size: 16px;
    font-weight: 600;
    color: #00209F;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #E62020;
    border-radius: 2px;
}

.about-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: #00209F;
    margin-bottom: 30px;
    margin-top: 15px;
}

.about-title .highlight {
    color: #E62020;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    padding: 14px 32px;
    background-color: #E62020;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-read-more:hover {
    background-color: #C00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.mission-content {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.mission-left {
    flex: 1;
    max-width: 550px;
}

.mission-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: #00209F;
    margin-bottom: 25px;
    margin-top: 15px;
}

.mission-title .highlight {
    color: #E62020;
}

.mission-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    max-width: 500px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #E62020;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: all 0.3s ease;
}

.step-icon:hover {
    background-color: #E62020;
    transform: scale(1.1);
}

.step-icon:hover svg {
    fill: white;
}

.step-label {
    font-size: 12px;
    font-weight: 700;
    color: #E62020;
    letter-spacing: 0.5px;
}

.step-connector {
    flex: 1;
    height: 3px;
    background-color: #E62020;
    margin: 0 10px;
    max-width: 60px;
}

/* Mission Right Side - Features */
.mission-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F8FF;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:nth-child(2) .feature-icon {
    background-color: #F0F4FF;
}

.feature-item:nth-child(3) .feature-icon {
    background-color: #F5F8FF;
}

.feature-icon:hover {
    transform: scale(1.05);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #00209F;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: #999999;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.contact-content {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    max-width: 550px;
}

.contact-title {
    font-size: 46px;
    font-weight: 700;
    color: #00209F;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 18px;
    color: #999999;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E62020;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #BBBBBB;
}

.phone-input {
    display: flex;
    gap: 10px;
}

.country-code {
    padding: 12px 16px;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    cursor: pointer;
    min-width: 80px;
}

.phone-input input {
    flex: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #E62020;
}

.form-checkbox label {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.form-checkbox label a {
    color: #666666;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #E62020;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #C00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Contact Right Side */
.contact-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.contact-image-container {
    position: relative;
    z-index: 2;
}

.contact-image {
    max-width: 550px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Contact Decorative Elements */
.contact-leaf {
    position: absolute;
    z-index: 1;
    animation: floatLeaf 4s ease-in-out infinite;
}

.leaf-top-left {
    top: 40px;
    left: 20px;
}

.leaf-bottom-left {
    bottom: 80px;
    left: 40px;
    animation-delay: 1s;
}

.envelope-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #00209F;
    margin-bottom: 15px;
}

.faq-title .highlight {
    color: #E62020;
}

.faq-subtitle {
    font-size: 18px;
    color: #999999;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #00209F;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-toggle:hover {
    transform: scale(1.1);
}

.faq-item .icon-minus {
    display: none;
}

.faq-item .icon-plus {
    display: block;
}

.faq-item.active .icon-minus {
    display: block;
}

.faq-item.active .icon-plus {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #F5F8FF;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.avatar-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    margin: 0 -8px;
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.1);
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #00209F;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #E62020;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-cta:hover {
    background-color: #C00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 42px;
    font-weight: 700;
    color: #00209F;
    margin-bottom: 15px;
}

.newsletter-text {
    font-size: 18px;
    color: #999999;
    line-height: 1.7;
    margin-bottom: 35px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #D0D5DD;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #E62020;
}

.newsletter-form input::placeholder {
    color: #BBBBBB;
}

.btn-subscribe {
    padding: 14px 32px;
    background-color: #E62020;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background-color: #C00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background-color: #F5F8FF;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #E62020;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #00209F;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    text-decoration: none;
    color: #999999;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E62020;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .couple-image img {
        max-width: 450px;
    }
    
    .about-content {
        gap: 80px;
    }
    
    .about-title {
        font-size: 40px;
    }
    
    .mission-content {
        gap: 60px;
    }
    
    .mission-title {
        font-size: 40px;
    }
    
    .contact-content {
        gap: 60px;
    }
    
    .contact-title {
        font-size: 40px;
    }
    
    .contact-image {
        max-width: 450px;
    }
    
    .faq-title {
        font-size: 40px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .newsletter-title {
        font-size: 36px;
    }
    
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav {
        gap: 30px;
        margin-right: 40px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .hero-right {
        width: 100%;
    }
    
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-right {
        max-width: 100%;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .mission-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .mission-left {
        max-width: 100%;
    }
    
    .mission-title {
        font-size: 36px;
    }
    
    .process-steps {
        max-width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-left {
        max-width: 100%;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .newsletter-title {
        font-size: 34px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 3;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .phone {
        display: none;
    }
    
    .social-icons {
        display: none;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .hero-right {
        display: none;
    }
    
    .couple-image {
        display: block;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-hero-image {
        display: block;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .mobile-hero-image img {
        width: 100%;
        max-width: 350px;
    }
    
    .app-showcase-image {
        max-width: 100% !important;
    }
    
    .contact-info p {
        flex-wrap: wrap;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-download {
        width: 100%;
        max-width: 250px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .leaf-decoration {
        opacity: 0.5;
    }
    
    .mission-title {
        font-size: 32px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        max-width: 100%;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px 22px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 22px 20px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 30px;
    }
    
    .newsletter-text {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .btn-subscribe {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 40px !important;
    }
    
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .couple-image img {
        max-width: 100%;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-decoration-curve {
        left: 20px;
    }
    
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-title {
        font-size: 28px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .envelope-icon {
        width: 60px;
        height: 60px;
    }
    
    .envelope-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-container {
        gap: 15px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        margin: 0 -6px;
    }
    
    .newsletter-section {
        padding: 50px 0;
    }
    
    .newsletter-title {
        font-size: 26px;
    }
    
    .newsletter-text {
        font-size: 15px;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 26px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .footer-heading {
        font-size: 15px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}
