/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== PLACEHOLDER IMAGE STYLES ===== */
.placeholder-image {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.placeholder-image.large {
    width: 100%;
    height: 200px;
}

.placeholder-image.medium {
    width: 100%;
    height: 100px;
}

.placeholder-image.small {
    width: 48px;
    height: 48px;
}

.placeholder-image.icon {
    width: 243px;
    height: 227px;
    flex-shrink: 0;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background: linear-gradient(90deg, #7fdfe4 9%, #4ab8dd 40%, #1562cc 83%);
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

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

.gradient-text {
    background: linear-gradient(90deg, #7fdfe4 9%, #4ab8dd 40%, #1562cc 83%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    background: #1562cc;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HEADER STYLES ===== */
.header {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    height: 72px;
    width: 100%;
}

.header-container {
    display: flex;
    width: 100%;
    max-width: 1440px;
    height: 72px;
    padding: 16px 16px 16px 32px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 0;
}

.logo {
    flex-shrink: 0;
    width: 104px;
    height: 104px;
    margin-right: 0;
    margin-top: 8px;
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin-top: 5px;
}

.navbar-container {
    width: 950px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: linear-gradient(90deg, #7FDFE4 0%, #4AB8DD 25%, #4AB8DD 52.41%, #1562CC 81.25%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 18px;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-link {
    color: #FFF;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.5;
    padding: 6px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.50);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    transform: translateY(-1px);
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.70);
}

.header-actions {
    flex-shrink: 0;
    width: 317px;
    height: 48px;
    display: flex;
    justify-content: flex-end;
    margin-left: 0;
}

.header-cta {
    white-space: nowrap;
    font-size: 16px;
    padding: 10px 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 653px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== HERO CONTENT SECTION ===== */
.hero-content-section {
    background: #ffffff;
    padding: 0;
    height: 346px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    margin-bottom: 80px;
}

.play-button {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.play-icon {
    width: 24px;
    height: 24px;
}

.hero-content {
    position: absolute;
    width: 1280px;
    height: 201px;
    left: 80px;
    top: 80px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.hero-headline-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    min-height: 0;
}

.hero-title {
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
    text-align: left;
}

.hero-subtext-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.hero-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    text-align: left;
}

.hero-cta {
    align-self: flex-start;
}

.hero-arrow-graphic {
    position: absolute;
    top: 60px;
    left: -62px;
    display: flex;
    width: 810px;
    height: 358px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.hero-arrow {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== PROBLEMS SECTION ===== */
.problems {
    background: #ffffff;
    padding: 80px 0;
}

.problems-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 80px;
}

.problems-tagline {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 40px;
}

.problems-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 40px;
}

.problems-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.problem-card {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 243px;
    height: 227px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-img {
    width: 243px;
    height: 227px;
    flex-shrink: 0;
    object-fit: contain;
}

/* Thumb up icons in Why Choose Us section */
.bullet-icon .icon-img {
    width: 14.174px;
    height: 12.814px;
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 8px;
    fill: #000;
}

/* ===== GET STARTED SECTION STYLES ===== */
.step-number {
    width: 40px;
    height: 40px;
    background: #4AB8DD;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.connector-img {
    width: 20px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lottie-animation {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: transparent;
    border-radius: 8px;
}

.lottie-container {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transform: translateX(10px);
}

/* Animated Icons */
.animated-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: transparent;
    border-radius: 8px;
    animation: bounce 2s infinite;
}

.phone-icon {
    animation: shake 1.5s infinite;
}

.folder-icon {
    animation: pulse 2s infinite;
}

.document-icon {
    animation: slide 2s infinite;
}

.computer-icon {
    animation: rotate 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

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

@keyframes slide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.problem-card-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
    margin: 20px 0 16px 0;
}

.problem-card-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.problems-cta {
    text-align: center;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    background: #ffffff;
    padding: 80px 0;
}

.why-choose-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-choose-text {
    flex: 1;
    max-width: 600px;
}

.why-choose-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 40px;
}

.why-choose-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 48px;
}

.why-choose-bullets {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.bullet-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bullet-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.bullet-check {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bullet-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.why-choose-image {
    flex: 1;
    max-width: 600px;
}

.why-choose-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== GET STARTED SECTION ===== */
.get-started {
    background: #ffffff;
    padding: 112px 0 0px 0;
}

.get-started-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.get-started-text {
    flex: 1;
    max-width: 600px;
}

.get-started-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 32px;
}

.get-started-timeline {
    flex: 1;
    max-width: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
}


.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.step-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -20px;
    top: 0;
    z-index: 2;
}

.step-icon lottie-player {
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
}

/* Timeline Connector Images */
.connector-image-wrapper {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    margin: -15px 0 5px 0;
}

.connector-image {
    width: 2px;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: contrast(200%) brightness(0);
    transform: scaleX(2) translateY(-20px);
}

.first-connector {
    transform: scaleX(2) translateY(-35px);
}

.step-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-connector {
    width: 20px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-line {
    width: 100%;
    height: 2px;
    object-fit: contain;
}

.step-content {
    flex: 1;
    padding-left: 24px;
}

.step-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 16px;
}

.step-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.step-graphic {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 68px;
    height: 68px;
}

.step-graphic-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.get-started-image {
    position: absolute;
    left: 100px;
    top: 156px;
    width: 500px;
    height: 500px;
}

.get-started-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: #ffffff;
    padding: 0px 0 80px 0;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 40px;
}

.about-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}

.about-graphics {
    flex: 1;
    max-width: 600px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-graphic {
    width: 295px;
    height: 295px;
}

.about-graphic-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-video {
    width: 383px;
    height: 422px;
    flex-shrink: 0;
}

.about-video-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-video .lottie-container {
    width: 383px;
    height: 422px;
    flex-shrink: 0;
}

/* ===== CTA BANNER SECTION ===== */
.cta-banner {
    background: #ffffff;
    padding: 80px 0;
}

.cta-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 48px;
    width: 1280px;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text {
    flex: 1;
    max-width: 638px;
}

.cta-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
    white-space: nowrap;
}

.cta-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    white-space: nowrap;
}

.cta-actions {
    flex-shrink: 0;
    margin-left: -20px;
}

.cta-graphic {
    width: 227px;
    height: 227px;
    flex-shrink: 0;
}

.cta-graphic-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: #ffffff;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    width: 134px;
    height: 134px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav {
    flex: 1;
    margin: 0 40px;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: center;
}

.footer-nav-list a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: #1562cc;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid #000000;
    padding-top: 32px;
}


.divider-line {
    width: 100%;
    height: 1px;
    object-fit: contain;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.copyright-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    white-space: nowrap;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-link {
    color: #000000;
    text-decoration: underline;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1562cc;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .header-container {
        width: 100%;
        padding: 16px 40px;
    }
    
    .navbar-container {
        width: 100%;
        max-width: 950px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .why-choose-content,
    .get-started-content,
    .about-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header Mobile */
    .header-container {
        width: 100%;
        padding: 16px 20px;
        flex-wrap: wrap;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .header-actions {
        width: auto;
        height: auto;
        max-width: 300px;
    }
    
    .navbar-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: auto;
        height: auto;
        background: #ffffff;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 0;
    }
    
    .navbar-container.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
        height: auto;
        padding: 0;
        width: auto;
        justify-content: flex-start;
    }
    
    .nav-link {
        color: #000000;
        background: none;
        padding: 12px 0;
        text-shadow: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    /* Hero Mobile */
    .hero-section {
        height: 400px;
    }
    
    .hero-content-section {
        height: auto;
        padding: 40px 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px 0 20px;
    }
    
    .hero-headline-group,
    .hero-subtext-group {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-cta {
        align-self: center;
    }
    
    .hero-arrow-graphic {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 20px auto 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-arrow {
        display: none;
    }
    
    /* Problems Mobile */
    .problems {
        padding: 60px 0;
    }
    
    .problems-header {
        margin-bottom: 60px;
    }
    
    .problems-title {
        font-size: 32px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Why Choose Mobile */
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .why-choose-title {
        font-size: 32px;
    }
    
    .bullet-item {
        text-align: left;
    }
    
    /* Get Started Mobile */
    .get-started {
        padding: 80px 0;
    }
    
    .get-started-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .get-started-title {
        font-size: 32px;
        text-align: center;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .step-content {
        padding-left: 0;
    }
    
    .step-graphic {
        position: static;
        transform: none;
        margin: 0 auto;
    }
    
    .get-started-image {
        position: static;
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    /* About Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-graphics {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-graphic,
    .about-video {
        width: 100%;
        max-width: 400px;
    }
    
    /* CTA Mobile */
    .cta-banner {
        padding: 60px 0;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        padding: 32px 20px;
    }
    
    .cta-title {
        font-size: 28px;
        white-space: normal;
    }
    
    .cta-description {
        white-space: normal;
    }
    
    .cta-graphic {
        position: static;
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-nav {
        margin: 0;
    }
    
    .footer-nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-container {
        padding: 16px 16px;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .navbar-container {
        width: 100%;
        height: auto;
        min-height: 32px;
        max-width: none;
    }
    
    .nav-list {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .problems-title,
    .why-choose-title,
    .get-started-title,
    .about-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .problems-grid {
        gap: 32px;
    }
    
    .problem-card {
        padding: 16px;
    }
    
    .problem-card-title {
        font-size: 20px;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid #1562cc;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000000;
    }
    
    .gradient-text,
    .highlight-text {
        color: #000000 !important;
        -webkit-text-fill-color: #000000 !important;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .btn,
    .play-button {
        display: none !important;
    }
    
    .hero-section {
        height: 300px;
    }
    
    .hero-content-section {
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 20px 15px 0 15px;
        gap: 20px;
    }
    
    .problems,
    .why-choose,
    .get-started,
    .about,
    .cta-banner {
        padding: 40px 0;
        page-break-inside: avoid;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero Section */
.services-hero {
    background: #ffffff;
    height: 417px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.services-hero-illustration {
    position: absolute;
    left: 537px;
    top: 64px;
    width: 306px;
    height: 306px;
    z-index: 1;
}

.hero-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-hero-container {
    position: absolute;
    left: 80px;
    top: 157px;
    width: 1280px;
    max-width: 1280px;
    height: 161px;
}

.services-hero-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.services-hero-headline {
    position: absolute;
    left: 0;
    top: 0;
    width: 600px;
    height: 134px;
}

.services-hero-title {
    position: absolute;
    left: -30px;
    top: 0;
    width: 600px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.services-hero-column {
    position: absolute;
    left: 760px;
    top: 0;
    width: 600px;
    height: 161px;
}

.services-hero-description {
    position: absolute;
    left: 0;
    top: 0;
    width: 600px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.services-hero-cta {
    position: absolute;
    left: 0;
    top: 113px;
    width: 317px;
    height: 48px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #7fdfe4 9%, #4ab8dd 40%, #1562cc 83%);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Services Features Section */
.services-features {
    background: #ffffff;
    height: 1179px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.services-container-grid-wrapper {
    position: absolute;
    left: 120px;
    top: 112px;
    width: 1280px;
    max-width: 1280px;
    height: 907px;
}

/* Stress Management Animation Container */
.stress-management-animation-container {
    position: absolute;
    left: 400px;
    top: 50px;
    width: 529px;
    height: 470px;
    flex-shrink: 0;
}

/* Section Title */
.services-section-title {
    position: absolute;
    left: 256px;
    top: 0;
    width: 768px;
    height: 207px;
}

.services-overline-text {
    position: absolute;
    left: 353px;
    top: 0;
    width: 62px;
    height: 24px;
}

.services-overline-text p {
    position: absolute;
    left: 31px;
    top: 0;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

.services-h2-content {
    position: absolute;
    left: 0;
    top: 63px;
    width: 768px;
    height: 167px;
    text-align: center;
}

.services-h2-title {
    position: absolute;
    left: 384px;
    top: 0;
    transform: translateX(-50%);
    width: 768px;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.services-h2-subtitle {
    position: absolute;
    left: 384.5px;
    top: 140px;
    transform: translateX(-50%);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    white-space: nowrap;
    margin: 0;
}

/* Feature Grid Group */
.services-feature-grid-group {
    position: absolute;
    left: 0;
    top: 287px;
    width: 1280px;
    height: 540px;
}

/* Left Column */
.feature-column-left {
    position: absolute;
    left: 0;
    top: 44px;
    width: 322px;
    height: 452px;
}

.content-gbp {
    position: absolute;
    left: 0;
    top: 11px;
    width: 322px;
    height: 194px;
}

.search-insights-icon {
    position: absolute;
    left: 137px;
    top: 0;
    width: 48px;
    height: 48px;
}

.content-text {
    position: absolute;
    left: 0;
    top: 72px;
    width: 322px;
    height: 122px;
    text-align: center;
}

.feature-title {
    position: absolute;
    left: 161.5px;
    top: 0;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
    white-space: nowrap;
    margin: 0;
}

.feature-description {
    position: absolute;
    left: 161px;
    top: 50px;
    transform: translateX(-50%);
    width: 322px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.feature2-icon-social-interaction {
    position: absolute;
    left: 79px;
    top: 237px;
    width: 163px;
    height: 163px;
    aspect-ratio: 1/1;
}

/* Feature icons with proper image styling */
.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-10-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Right Column */
.feature-column-right {
    position: absolute;
    left: 958px;
    top: 64px;
    width: 322px;
    height: 476px;
}

.feature2-social-engagement-group {
    position: absolute;
    left: 0;
    top: 0;
    width: 322px;
    height: 194px;
}

.feature2-social-engagement-text {
    position: absolute;
    left: 0;
    top: 72px;
    width: 322px;
    height: 122px;
    text-align: center;
}

.feature3-icon-calendar-poster {
    position: absolute;
    left: 94px;
    top: -87px;
    width: 153px;
    height: 154px;
}

.feature4-icon-connected-people {
    position: absolute;
    left: 94px;
    top: 219px;
    width: 153px;
    height: 153px;
}

/* Bottom Left - Social Media Engagement */
.content-social-media-engagement {
    position: absolute;
    left: 0.5px;
    top: 684px;
    width: 322px;
    height: 194px;
}

.social-leaderboard-icon {
    position: absolute;
    left: 50%;
    top: -81px;
    transform: translateX(-50%);
    width: 163px;
    height: 163px;
    aspect-ratio: 1/1;
    z-index: 10;
}

.content-social-media-text {
    position: absolute;
    left: 0;
    top: 72px;
    width: 322px;
    height: 122px;
    text-align: center;
}

/* Bottom Right - Build Credibility and Trust */
.feature2-title-social-media-engagement-text {
    position: absolute;
    left: 968px;
    top: 667px;
    width: 322px;
    height: 218px;
}

.content-credibility {
    position: absolute;
    left: 0;
    top: 72px;
    width: 322px;
    height: 146px;
    text-align: center;
}

/* Google Logo Icon */
.feature1-icon-google-logo {
    position: absolute;
    left: 113px;
    top: 290px;
    width: 90px;
    height: 90px;
}


.google-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Fix for Google logo positioning inside content-gbp */
.content-gbp .google-logo-img {
    position: absolute !important;
    top: -45px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90px !important;
    height: 90px !important;
    z-index: 10 !important;
    object-fit: contain !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* CTA Actions */
.services-cta-actions {
    position: absolute;
    left: 400px;
    top: 907px;
    width: 480px;
    height: 48px;
}


.services-main-cta {
    font-size: 24px !important;
    display: flex !important;
    padding: 12px 24px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

/* Stress Management Animation */
.stress-management-animation {
    position: absolute;
    left: 400px;
    top: 50px;
    width: 529px;
    height: 470px;
    z-index: 10;
}

.stress-animation-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stress-management-animation lottie-player {
    width: 529px !important;
    height: 470px !important;
}

/* Social Media Ads Section */
.social-media-ads {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.social-media-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    height: 459px;
}

.social-media-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 360px;
    height: 459px;
}

.social-media-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
}

.social-media-title {
    position: absolute;
    left: 0;
    top: 104px;
    width: 360px;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.social-media-description {
    position: absolute;
    left: 0;
    top: 244px;
    width: 360px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.social-media-cta {
    position: absolute;
    left: 0;
    top: 411px;
    width: 317px;
    height: 48px;
}

.social-media-animation {
    position: absolute;
    left: 550px;
    top: -40px;
    width: 569px;
    height: 545px;
}

.social-animation-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* SEO Optimization Section */
.seo-optimization {
    background: #ffffff;
    height: 864px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: -200px;
}

.seo-content {
    position: absolute;
    left: 80px;
    top: 112px;
    width: 1280px;
    max-width: 1280px;
    height: 640px;
}

.seo-animation {
    position: absolute;
    left: 0px;
    top: -30px;
    width: 670px;
    height: 670px;
}

.seo-animation-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.seo-text {
    position: absolute;
    left: 720px;
    top: 198px;
    width: 600px;
    height: 243px;
}

.seo-title {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    white-space: nowrap;
    margin: 0;
}

.seo-description {
    position: absolute;
    left: 0;
    top: 82px;
    width: 600px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.seo-cta {
    position: absolute;
    left: 0;
    top: 195px;
    width: 317px;
    height: 48px;
}

/* Copywriting Section */
.copywriting {
    background: #ffffff;
    height: 864px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 0;
}

.copywriting-content {
    position: absolute;
    left: 80px;
    top: 112px;
    width: 1280px;
    max-width: 1280px;
    height: 640px;
}

.copywriting-text {
    position: absolute;
    left: 0;
    top: 198.5px;
    width: 600px;
    height: 243px;
}

.copywriting-title {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    white-space: nowrap;
    margin: 0;
}

.copywriting-description {
    position: absolute;
    left: 0;
    top: 82px;
    width: 600px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.copywriting-cta {
    position: absolute;
    left: 0;
    top: 195px;
    width: 317px;
    height: 48px;
}

.copywriting-animation {
    position: absolute;
    left: 624px;
    top: 22px;
    width: 656px;
    height: 518px;
}

.copywriting-animation-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Web Development Section */
.web-development {
    background: #ffffff;
    height: 624px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: -100px;
}

.web-dev-content {
    position: absolute;
    left: 80px;
    top: 27px;
    width: 1280px;
    max-width: 1280px;
    height: 640px;
}

.web-dev-animation {
    position: absolute;
    left: 0;
    top: 15px;
    width: 670px;
    height: 538px;
}

.web-dev-animation-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.web-dev-text {
    position: absolute;
    left: 680px;
    top: 198.5px;
    width: 600px;
    height: 243px;
}

.web-dev-title {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    white-space: nowrap;
    margin: 0;
}

.web-dev-description {
    position: absolute;
    left: 0;
    top: 82px;
    width: 600px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.web-dev-cta {
    position: absolute;
    left: 0;
    top: 195px;
    width: 317px;
    height: 48px;
}

/* Custom Marketing Section */
.custom-marketing {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.custom-marketing-card {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    height: 402px;
}

.custom-marketing-content {
    position: absolute;
    left: 64px;
    top: 64px;
    width: 768px;
    height: 274px;
}

.custom-marketing-title {
    position: absolute;
    left: 0;
    top: 0;
    width: 768px;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.custom-marketing-description {
    position: absolute;
    left: 0;
    top: 140px;
    width: 768px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.custom-marketing-cta {
    position: absolute;
    left: 664px;
    top: 226px;
    width: 317px;
    height: 48px;
}

.custom-marketing-illustration {
    position: absolute;
    left: 1003px;
    top: 43px;
    width: 240px;
    height: 240px;
}

.custom-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-hero {
        height: auto;
        padding: 80px 20px;
    }
    
    .services-hero-container {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }
    
    .services-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .services-hero-headline {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    }
    
    .services-hero-title {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        font-size: 48px;
    }
    
    .services-hero-column {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }
    
    .services-hero-description {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 24px;
    }
    
    .services-hero-cta {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
    }
    
    .services-hero-illustration {
        position: relative;
        left: auto;
        top: auto;
        margin: 40px auto 0;
    }
    
    .services-features {
        height: auto;
        padding: 80px 20px;
    }
    
    .services-container-grid-wrapper {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }
    
    .services-section-title {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .services-overline-text {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .services-overline-text p {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .services-h2-content {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }
    
    .services-h2-title {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        transform: none;
        margin-bottom: 20px;
    }
    
    .services-h2-subtitle {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .services-feature-grid-group {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .feature-column-left,
    .feature-column-right {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .content-gbp,
    .feature2-social-engagement-group,
    .content-social-media-engagement,
    .feature2-title-social-media-engagement-text {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    
    .search-insights-icon,
    .social-leaderboard-icon {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
    }
    
    .content-text,
    .feature2-social-engagement-text,
    .content-social-media-text,
    .content-credibility {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }
    
    .feature-title {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 16px;
    }
    
    .feature-description {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        transform: none;
    }
    
    .feature2-icon-social-interaction,
    .feature3-icon-calendar-poster,
    .feature4-icon-connected-people,
    .image-10 {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
    }
    
    .feature1-icon-google-logo {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
    }
    
    .services-cta-actions {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        text-align: center;
        margin: 40px auto;
    }
    
    .services-main-cta {
        width: auto;
        height: auto;
        display: inline-block;
    }
    
    .stress-management-animation {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 529px;
        height: auto;
        margin: 40px auto;
    }
    
    .social-media-ads,
    .seo-optimization,
    .copywriting,
    .web-development,
    .custom-marketing {
        height: auto;
        padding: 80px 20px;
    }
    
    .social-media-content,
    .seo-content,
    .copywriting-content,
    .web-dev-content,
    .custom-marketing-card {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }
    
    .social-media-text,
    .seo-text,
    .copywriting-text,
    .web-dev-text,
    .custom-marketing-content {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .social-media-icon,
    .seo-animation,
    .copywriting-animation,
    .web-dev-animation,
    .custom-marketing-illustration {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto 40px;
    }
    
    .social-media-title,
    .seo-title,
    .copywriting-title,
    .web-dev-title,
    .custom-marketing-title {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .social-media-description,
    .seo-description,
    .copywriting-description,
    .web-dev-description,
    .custom-marketing-description {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 24px;
    }
    
    .social-media-cta,
    .seo-cta,
    .copywriting-cta,
    .web-dev-cta,
    .custom-marketing-cta {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 36px;
    }
    
    .services-h2-title {
        font-size: 36px;
    }
    
    .services-feature-grid-group {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-media-title,
    .seo-title,
    .copywriting-title,
    .web-dev-title,
    .custom-marketing-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 28px;
    }
    
    .services-h2-title {
        font-size: 28px;
    }
    
    .social-media-title,
    .seo-title,
    .copywriting-title,
    .web-dev-title,
    .custom-marketing-title {
        font-size: 24px;
    }
}

.social-media-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 40px 0;
}

.social-media-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 48px 0;
}

.social-media-cta {
    align-self: flex-start;
}

.social-media-animation {
    flex: 1;
    max-width: 569px;
    height: 545px;
    position: relative;
    margin-top: -80px;
}

.social-animation-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* SEO Optimization Section */
.seo-optimization {
    background: #ffffff;
    padding: 20px 0;
}

.seo-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.seo-animation {
    flex: 1;
    max-width: 670px;
    height: 670px;
    position: relative;
    margin-left: -64px;
    margin-top: -30px;
}

.seo-animation-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.seo-text {
    flex: 1;
    max-width: 600px;
}

.seo-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 40px 0;
}

.seo-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 48px 0;
}

.seo-cta {
    align-self: flex-start;
}

/* Copywriting Section */
.copywriting {
    background: #ffffff;
    padding: 20px 0;
}

.copywriting-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.copywriting-text {
    flex: 1;
    max-width: 600px;
}

.copywriting-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 40px 0;
}

.copywriting-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 48px 0;
}

.copywriting-cta {
    align-self: flex-start;
}

.copywriting-animation {
    flex: 1;
    max-width: 656px;
    height: 518px;
    position: relative;
}

.copywriting-animation-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Web Development Section */
.web-development {
    background: #ffffff;
    padding: 80px 0;
}

.web-dev-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.web-dev-animation {
    flex: 1;
    max-width: 670px;
    height: 538px;
    position: relative;
}

.web-dev-animation-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.web-dev-text {
    flex: 1;
    max-width: 600px;
}

.web-dev-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 40px 0;
}

.web-dev-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 48px 0;
}

.web-dev-cta {
    align-self: flex-start;
}

/* Custom Marketing Solution Section */
.custom-marketing {
    background: #ffffff;
    padding: 80px 0;
}

.custom-marketing-card {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 64px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 402px;
}

.custom-marketing-content {
    flex: 1;
    max-width: 768px;
}

.custom-marketing-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 40px 0;
}

.custom-marketing-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 48px 0;
}

.custom-marketing-cta {
    align-self: flex-start;
    font-size: 16px;
    padding: 12px 24px;
}

.custom-marketing-illustration {
    width: 240px;
    height: 240px;
    flex-shrink: 0;
}

.custom-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Services Page Responsive Design */
@media (max-width: 1200px) {
    .services-hero-container {
        padding: 0 40px;
        gap: 60px;
    }
    
    .services-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .social-media-content,
    .seo-content,
    .copywriting-content,
    .web-dev-content {
        gap: 60px;
    }
    
    .custom-marketing-card {
        padding: 48px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: auto;
        padding: 60px 0;
    }
    
    .services-hero-container {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0 20px;
    }
    
    .services-hero-content {
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .services-hero-illustration {
        position: static;
        left: auto;
        top: auto;
        width: 250px;
        height: 250px;
        margin: 0 auto;
        order: 2;
    }
    
    .services-hero-headline {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        order: 1;
    }
    
    .services-hero-title {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        font-size: 36px;
        text-align: center;
    }
    
    .services-hero-column {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        order: 3;
    }
    
    .services-hero-description {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .services-hero-cta {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        align-self: center;
    }
    
    .services-features {
        height: auto;
        padding: 80px 0;
    }
    
    .services-container-grid-wrapper {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0 20px;
    }
    
    .services-section-title {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .services-overline-text {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        margin: 0 auto 20px;
    }
    
    .services-overline-text p {
        position: static;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .services-h2-content {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }
    
    .services-h2-title {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .services-h2-subtitle {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        white-space: normal;
    }
    
    .services-feature-grid-group {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .feature-column-left,
    .feature-column-right {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .content-gbp,
    .feature2-social-engagement-group {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .search-insights-icon,
    .social-leaderboard-icon {
        position: static;
        left: auto;
        top: auto;
        width: 48px;
        height: 48px;
        margin: 0 auto 20px;
    }
    
    .content-text,
    .feature2-social-engagement-text,
    .content-social-media-text,
    .content-credibility {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }
    
    .feature-title {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        white-space: normal;
        margin-bottom: 16px;
    }
    
    .feature-description {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
    }
    
    .feature2-icon-social-interaction,
    .feature3-icon-calendar-poster,
    .feature4-icon-connected-people {
        position: static;
        left: auto;
        top: auto;
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .content-social-media-engagement,
    .feature2-title-social-media-engagement-text {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .image-10 {
        position: static;
        left: auto;
        top: auto;
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
    }
    
    .feature1-icon-google-logo {
        position: static;
        left: auto;
        top: auto;
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }
    
    .services-cta-actions {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .stress-management-animation {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }
    
    .social-media-ads,
    .seo-optimization,
    .copywriting,
    .web-development,
    .custom-marketing {
        padding: 80px 0;
    }
    
    .social-media-content,
    .seo-content,
    .copywriting-content,
    .web-dev-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .social-media-text,
    .seo-text,
    .copywriting-text,
    .web-dev-text {
        max-width: none;
    }
    
    .social-media-title,
    .seo-title,
    .copywriting-title,
    .web-dev-title,
    .custom-marketing-title {
        font-size: 32px;
    }
    
    .social-media-animation,
    .seo-animation,
    .copywriting-animation,
    .web-dev-animation {
        max-width: 100%;
        height: auto;
        margin: 0;
    }
    
    .custom-marketing-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 32px;
    }
    
    .custom-marketing-cta {
        align-self: center;
    }
    
    .custom-marketing-illustration {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 28px;
    }
    
    .services-hero-illustration {
        width: 200px;
        height: 200px;
    }
    
    .services-h2-title,
    .social-media-title,
    .seo-title,
    .copywriting-title,
    .web-dev-title,
    .custom-marketing-title {
        font-size: 28px;
    }
    
    .feature2-icon-social-interaction,
    .feature3-icon-calendar-poster,
    .feature4-icon-connected-people {
        width: 100px;
        height: 100px;
    }
    
    .image-10 {
        width: 100px;
        height: 100px;
    }
    
    .services-main-cta {
        font-size: 20px;
        padding: 10px 24px;
    }
    
    .custom-marketing-card {
        padding: 32px 16px;
    }
    
    .custom-marketing-illustration {
        width: 150px;
        height: 150px;
    }
}

/* ===== GROWTH PLAN PAGE STYLES ===== */

/* Hero Section - Growth Plan Page Only */
.growth-plan-page .hero-section {
    background-color: #ffffff;
    height: 369px;
    position: relative;
    overflow: visible;
    border: 2px solid #000000;
    margin: 0 20px;
}

.hero-container {
    position: relative;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: visible;
}

.hero-text-content {
    position: absolute;
    left: 80px;
    top: 112px;
    max-width: 768px;
    height: 77px;
}

.growth-plan-page .hero-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
    white-space: nowrap;
}

.growth-plan-page .hero-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    position: absolute;
    left: 0;
    top: 100px;
    width: 555px;
    margin: 0;
}

.hero-illustration {
    position: absolute;
    left: 881px;
    top: -13px;
    width: 432px;
    height: 432px;
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Tailored Solutions Section */
.tailored-solutions-section {
    background-color: #ffffff;
    height: 864px;
    position: relative;
    overflow: visible;
}

.solutions-container {
    position: relative;
    height: 640px;
    left: 80px;
    top: 112px;
    max-width: 1280px;
    width: 1280px;
    overflow: visible;
}

.solutions-illustration {
    position: absolute;
    left: -41px;
    top: 50px;
    width: 600px;
    height: 640px;
}

.solutions-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.solutions-content {
    position: absolute;
    left: 713px;
    top: 148px;
    width: 600px;
    height: 401px;
}

.solutions-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 32px 0;
    width: 600px;
}

.solutions-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 40px 0;
    width: 600px;
}

.benefits-list {
    position: absolute;
    left: 0;
    top: 313px;
    width: 600px;
    height: 120px;
}

.benefit-item {
    position: absolute;
    left: 0;
    width: 600px;
    height: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-item:nth-child(1) {
    top: 8px;
}

.benefit-item:nth-child(2) {
    top: 48px;
}

.benefit-item:nth-child(3) {
    top: 88px;
}

.benefit-icon {
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
}

.benefit-item span {
    position: absolute;
    left: 32px;
    top: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    white-space: nowrap;
}

/* Arrow Illustrations */
.left-arrow-illustration {
    position: absolute;
    left: 18.08px;
    top: -97.61px;
    width: 421px;
    height: 255px;
    transform: rotate(6.971deg);
}

.left-arrow-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.bottom-right-arrow-illustration {
    position: absolute;
    left: 1050px;
    top: 450px;
    width: 311.13px;
    height: 349.39px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: visible;
}

.bottom-right-arrow-image {
    width: 311.13px;
    height: 349.39px;
    object-fit: contain;
    object-position: center;
    transform: rotate(0deg);
}

/* Unlock Potential Section */
.unlock-potential-section {
    background-color: #ffffff;
    height: 358px;
    position: relative;
    overflow: visible;
}

.unlock-container {
    position: relative;
    height: 134px;
    left: 80px;
    top: 112px;
    max-width: 1280px;
    width: 1280px;
}

.unlock-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 1280px;
    height: 134px;
}

.unlock-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 600px;
    height: 116px;
}

.unlock-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
    width: 600px;
}

.unlock-cta {
    position: absolute;
    left: 680px;
    top: 0;
    width: 600px;
    height: 134px;
}

.unlock-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 32px 0;
    width: 600px;
}

.unlock-btn {
    position: absolute;
    left: 0;
    top: 86px;
    width: 317px;
    height: 48px;
    display: inline-block;
    text-decoration: none;
}

.unlock-arrow-illustration {
    position: absolute;
    left: 410px;
    top: 80px;
    width: 191.257px;
    height: 245.653px;
}

.unlock-arrow {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Responsive Design for Growth Plan */
@media (max-width: 1024px) {
    .growth-plan-page .hero-section {
        height: auto;
        padding: 80px 0;
    }
    
    .hero-text-content {
        position: static;
        left: auto;
        top: auto;
        height: auto;
        margin: 0 auto 40px;
        text-align: center;
    }
    
    .hero-illustration {
        position: static;
        left: auto;
        top: auto;
        margin: 0 auto;
        width: 300px;
        height: 300px;
    }
    
    .growth-plan-page .hero-description {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        max-width: 555px;
        margin: 24px auto 0;
    }
    
    .tailored-solutions-section {
        height: auto;
        padding: 80px 0;
    }
    
    .solutions-container {
        position: static;
        left: auto;
        top: auto;
        height: auto;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .solutions-illustration {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: 0 auto 40px;
    }
    
    .solutions-content {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    
    .solutions-title,
    .solutions-description {
        width: auto;
    }
    
    .benefits-list {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        margin-top: 40px;
    }
    
    .benefit-item {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        margin-bottom: 16px;
        justify-content: center;
    }
    
    .benefit-icon {
        position: static;
        left: auto;
        top: auto;
    }
    
    .benefit-item span {
        position: static;
        left: auto;
        top: auto;
        white-space: normal;
    }
    
    .left-arrow-illustration,
    .bottom-right-arrow-illustration {
        display: none;
    }
    
    .unlock-potential-section {
        height: auto;
        padding: 80px 0;
    }
    
    .unlock-container {
        position: static;
        left: auto;
        top: auto;
        height: auto;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .unlock-content {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        margin-bottom: 40px;
    }
    
    .unlock-text {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .unlock-title {
        width: auto;
    }
    
    .unlock-cta {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        text-align: center;
    }
    
    .unlock-description {
        width: auto;
        margin-bottom: 20px;
    }
    
    .unlock-btn {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
    }
    
    .unlock-arrow-illustration {
        position: static;
        left: auto;
        top: auto;
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .growth-plan-page .hero-title {
        font-size: 48px;
        white-space: normal;
    }
    
    .solutions-title {
        font-size: 36px;
    }
    
    .unlock-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .growth-plan-page .hero-section,
    .tailored-solutions-section,
    .unlock-potential-section {
        padding: 80px 0;
    }
    
    .growth-plan-page .hero-title {
        font-size: 40px;
    }
    
    .growth-plan-page .hero-description {
        font-size: 18px;
    }
    
    .solutions-title {
        font-size: 32px;
    }
    
    .solutions-description {
        font-size: 16px;
    }
    
    .unlock-title {
        font-size: 36px;
    }
    
    .unlock-description {
        font-size: 16px;
    }
    
    .benefit-item span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .growth-plan-page .hero-title {
        font-size: 32px;
    }
    
    .solutions-title {
        font-size: 28px;
    }
    
    .unlock-title {
        font-size: 32px;
    }
    
    .hero-image,
    .solutions-image {
        max-width: 100%;
    }
}

/* ===== CONTACT US PAGE STYLES ===== */

/* Contact Hero Section - Exact Figma Design */
.contact-hero-section {
    background: #ffffff;
    height: 462px;
    position: relative;
    overflow: hidden;
}

.contact-hero-left-content {
    position: absolute;
    height: 178px;
    left: 80px;
    top: 112px;
    width: 742px;
    max-width: 1280px;
    border: 1px solid #000000;
    padding: 20px;
    box-sizing: border-box;
}

.contact-hero-component {
    position: absolute;
    height: 238px;
    left: 0;
    top: 0;
    width: 768px;
    max-width: 768px;
}

.contact-hero-section-title {
    position: absolute;
    height: 158px;
    left: 0;
    top: 0;
    width: 768px;
}

.contact-hero-tagline-wrapper {
    position: absolute;
    height: 24px;
    left: 20px;
    top: 20px;
    width: 60px;
}

.contact-hero-tagline {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.contact-hero-content-text {
    position: absolute;
    height: 118px;
    left: 20px;
    top: 60px;
    width: 700px;
}

.contact-hero-title {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    color: #000000;
    left: 0;
    top: 0;
    margin: 0;
    text-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    white-space: nowrap;
}

.contact-hero-description {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: 75px;
    margin: 0;
    white-space: nowrap;
}

.contact-hero-cta-button {
    position: absolute;
    height: 48px;
    left: 20px;
    top: 190px;
    width: 317px;
    text-decoration: none;
}

.contact-hero-cta {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-hero-right-illustration {
    position: absolute;
    left: 903px;
    top: -10px;
    width: 485px;
    height: 485px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Contact Main Section - Exact Figma Design */
.contact-main-section {
    background: #ffffff;
    height: 974px;
    position: relative;
    overflow: hidden;
}

.contact-main-container {
    position: absolute;
    height: 750px;
    left: 80px;
    top: 112px;
    width: 1280px;
    max-width: 1280px;
}

.contact-form-header-section {
    position: absolute;
    height: 149px;
    left: 0;
    top: 0;
    width: 768px;
    max-width: 768px;
}

.contact-form-tagline {
    position: absolute;
    height: 24px;
    left: 0;
    top: 0;
    width: 60px;
}

.contact-form-tagline-text {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.contact-form-headline-section {
    position: absolute;
    height: 109px;
    left: 0;
    top: 40px;
    width: 768px;
}

.contact-form-title {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    left: 0;
    top: 0;
    margin: 0;
    white-space: nowrap;
}

.contact-form-description {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: 82px;
    margin: 0;
    white-space: nowrap;
}

.contact-form-details-section {
    position: absolute;
    height: 553px;
    left: 0;
    top: 197px;
    width: 1280px;
}

.contact-form-container {
    position: absolute;
    height: 553px;
    left: 0;
    top: 0;
    width: 616px;
}

.contact-form {
    position: relative;
    height: 100%;
    width: 100%;
}

.form-field-group {
    position: absolute;
    height: 80px;
    left: 0;
    top: 0;
    width: 616px;
}

.form-field-group:nth-child(2) {
    top: 104px;
}

.form-message-group {
    height: 212px;
    top: 208px;
}

.form-label {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.form-input-container,
.form-textarea-container {
    position: absolute;
    left: 0;
    top: 32px;
    width: 616px;
    padding: 12px;
    border: 1px solid #000000;
    background: #ffffff;
}

.form-textarea-container {
    height: 180px;
}

.form-input,
.form-textarea {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
}

.form-textarea {
    height: 100%;
    resize: none;
}

.form-checkbox-group {
    position: absolute;
    left: 0;
    top: 444px;
    width: auto;
    padding: 0 0 16px 0;
}

.form-checkbox-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.form-checkbox-container {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.form-checkbox-container:hover .checkmark {
    border-color: #1562cc;
    transform: scale(1.05);
}

.form-checkbox {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* Custom checkbox styling when checked */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 1px solid #000000;
    display: block;
    transition: all 0.2s ease;
    z-index: 1;
}

.form-checkbox:checked ~ .checkmark {
    background: #1562cc;
    border-color: #1562cc;
}

.form-checkbox:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.checkbox-text {
    user-select: none;
}

.form-submit-container {
    position: absolute;
    height: 48px;
    left: 0;
    top: 505px;
    width: 317px;
}

.form-submit-btn {
    width: 100%;
    height: 100%;
}

/* Contact Details Section */
.contact-details-container {
    position: absolute;
    height: 352px;
    left: 696px;
    top: 0;
    width: 584px;
}

.contact-details-row {
    position: absolute;
    height: 140px;
    left: 0;
    top: 0;
    width: 584px;
    display: flex;
    gap: 24px;
}

.contact-detail-item {
    position: relative;
    height: 140px;
    width: 280px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-address {
    position: absolute;
    height: 172px;
    left: 0;
    top: 180px;
    width: 240px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    overflow: hidden;
}

.contact-detail-icon-vector {
    position: absolute;
    inset: 0;
}

.contact-detail-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-detail-content {
    position: relative;
    flex: 1;
    height: 92px;
}

.contact-detail-address-content {
    position: relative;
    height: 84px;
    width: 240px;
}

.contact-detail-title {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
    left: 0;
    top: 0;
    margin: 0;
    white-space: nowrap;
}

.contact-detail-subtitle {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: 36px;
    margin: 0;
    white-space: nowrap;
}

.contact-detail-link {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    text-decoration: underline;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    left: 0;
    top: 68px;
    white-space: nowrap;
}

.contact-detail-link:hover {
    color: #1562cc;
}

.contact-detail-address-text {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: 36px;
    margin: 0;
    width: 240px;
}

.contact-illustration {
    position: absolute;
    left: 950px;
    top: 256px;
    width: 400px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Privacy Policy Page - Exact Figma Design */
.privacy-header-section {
    background: #ffffff;
    height: 541px;
    position: relative;
    overflow: hidden;
}

.privacy-header-container {
    position: absolute;
    height: 143px;
    left: 80px;
    top: 112px;
    width: 1280px;
    max-width: 1280px;
    border: 1px solid #000000;
}

.privacy-header-content {
    position: absolute;
    height: 143px;
    left: 0;
    top: 0;
    width: 768px;
    max-width: 768px;
}

.privacy-header-title {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    color: #000000;
    left: 14px;
    top: 5px;
    margin: 0;
    white-space: nowrap;
}

.privacy-header-description {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    left: 14px;
    top: 89px;
    margin: 0;
    white-space: nowrap;
}

.privacy-header-illustration {
    position: absolute;
    left: 996px;
    top: 164px;
    width: 265px;
    height: 265px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.privacy-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Privacy Policy Main Section */
.privacy-main-section {
    background: #ffffff;
    height: 860px;
    position: relative;
    overflow: hidden;
}

.privacy-main-container {
    position: absolute;
    height: 1767px;
    left: 80px;
    top: 112px;
    width: 1280px;
    max-width: 1280px;
}

.privacy-main-content {
    position: absolute;
    height: 1767px;
    left: 0;
    top: 0;
    width: 1280px;
}

/* Table of Contents */
.privacy-toc-section {
    position: absolute;
    height: 305px;
    left: 0;
    top: -79px;
    width: 320px;
}

.privacy-toc-title {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
    left: 0;
    top: 0;
    margin: 0;
    white-space: nowrap;
}

.privacy-toc-content {
    position: absolute;
    height: 255px;
    left: 0;
    top: 50px;
    width: 320px;
}

.privacy-toc-item {
    position: absolute;
    height: 51px;
    left: 0;
    width: 320px;
    background: #ffffff;
}

.privacy-toc-item:nth-child(2) { top: 0; }
.privacy-toc-item:nth-child(3) { top: 51px; }
.privacy-toc-item:nth-child(4) { top: 102px; }
.privacy-toc-item:nth-child(5) { top: 153px; }
.privacy-toc-item:nth-child(6) { top: 204px; }

.privacy-toc-link {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    text-decoration: none;
    left: 16px;
    top: 12px;
    white-space: nowrap;
}

.privacy-toc-link:hover {
    color: #1562cc;
}

/* Main Content */
.privacy-content-section {
    position: absolute;
    height: 1767px;
    left: 512px;
    top: 0;
    width: 768px;
    max-width: 768px;
}

.privacy-policy-section {
    position: absolute;
    width: 768px;
}

.privacy-policy-section:nth-child(1) { top: 31px; height: 120px; }
.privacy-policy-section:nth-child(2) { top: 171px; height: 120px; }
.privacy-policy-section:nth-child(3) { top: 311px; height: 120px; }
.privacy-policy-section:nth-child(4) { top: 451px; height: 120px; }
.privacy-policy-section:nth-child(5) { top: 591px; height: 120px; }

.privacy-policy-section-title {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: 42px;
    margin: 0;
    white-space: nowrap;
}

.privacy-policy-intro {
    position: absolute;
    height: 64px;
    left: 0;
    top: 20px;
    width: 768px;
}

.privacy-policy-intro-text {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: -40px;
    width: 768px;
    margin: 0;
}

.privacy-policy-body {
    position: absolute;
    height: 88px;
    left: 0;
    top: 60px;
    width: 768px;
}

.privacy-policy-text {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: 0;
    width: 768px;
    margin: 0;
}

/* Robot Illustration */
.privacy-robot-illustration {
    position: absolute;
    left: 0;
    top: 350px;
    width: 400px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.privacy-robot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.privacy-faq-section {
    background: #ffffff;
    height: 1505px;
    position: relative;
    overflow: hidden;
}

.privacy-faq-container {
    position: absolute;
    height: 1281px;
    left: 80px;
    top: 112px;
    width: 1280px;
    max-width: 1280px;
}

.privacy-faq-header {
    position: absolute;
    height: 109px;
    left: 256px;
    top: 0;
    width: 768px;
    max-width: 768px;
    text-align: center;
}

.privacy-faq-title {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
}

.privacy-faq-description {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    left: 50%;
    top: 82px;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
}

.privacy-faq-list {
    position: absolute;
    height: 855px;
    left: 256px;
    top: 189px;
    width: 768px;
    max-width: 768px;
}

.privacy-faq-item {
    position: absolute;
    background: #ffffff;
    width: 768px;
    border: 1px solid #000000;
}

.privacy-faq-item:nth-child(1) { top: 0; height: 163px; }
.privacy-faq-item:nth-child(2) { top: 179px; height: 163px; }
.privacy-faq-item:nth-child(3) { top: 358px; height: 163px; }
.privacy-faq-item:nth-child(4) { top: 537px; height: 139px; }
.privacy-faq-item:nth-child(5) { top: 692px; height: 163px; }

.privacy-faq-question {
    position: absolute;
    height: 67px;
    left: 0;
    top: 0;
    width: 768px;
    overflow: hidden;
}

.privacy-faq-question-text {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    left: 24px;
    top: 20px;
    margin: 0;
    white-space: nowrap;
}

.privacy-faq-icon {
    position: absolute;
    left: 720px;
    top: 21.5px;
    width: 24px;
    height: 24px;
    overflow: hidden;
}

.privacy-faq-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.privacy-faq-answer {
    position: absolute;
    height: 96px;
    left: 0;
    top: 67px;
    width: 768px;
}

.privacy-faq-answer:nth-child(4) .privacy-faq-answer { height: 72px; }

.privacy-faq-answer-text {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    left: 24px;
    top: 0;
    width: 720px;
    margin: 0;
}

/* FAQ CTA */
.privacy-faq-cta {
    position: absolute;
    height: 157px;
    left: 360px;
    top: 1124px;
    width: 560px;
    max-width: 560px;
}

.privacy-faq-cta-content {
    position: absolute;
    height: 85px;
    left: 0;
    top: 0;
    width: 560px;
    text-align: center;
}

.privacy-faq-cta-title {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #000000;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
}

.privacy-faq-cta-description {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    left: 50%;
    top: 58px;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
}

.privacy-faq-cta-button {
    position: absolute;
    height: 48px;
    left: 50%;
    top: 109px;
    transform: translateX(-50%);
    width: auto;
    z-index: 10;
}

.privacy-faq-cta-btn {
    display: inline-flex !important;
    width: auto !important;
    height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    background: linear-gradient(to right, #7fdfe4 9%, #4ab8dd 40%, #1562cc 83%) !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    border: none !important;
    min-width: auto !important;
    max-width: none !important;
    min-height: auto !important;
    max-height: 48px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    color: white !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    z-index: 15 !important;
    position: relative !important;
    pointer-events: auto !important;
}

.privacy-faq-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    opacity: 0.9 !important;
}

/* FAQ Arrow Graphics */
.privacy-faq-arrow-top-left {
    position: absolute;
    left: -103px;
    top: -120px;
    width: 361.914px;
    height: 228.738px;
    transform: rotate(6.971deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-faq-arrow-top-left-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.privacy-faq-arrow-bottom-right {
    position: absolute;
    left: 500px;
    top: 1000px;
    display: flex;
    width: 810px;
    height: 358px;
    transform: rotate(-13.495deg);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.privacy-faq-arrow-bottom-right-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Privacy Matters Section */
.privacy-matters-section {
    background: #ffffff;
    height: 338px;
    position: relative;
    overflow: hidden;
}

.privacy-matters-container {
    position: absolute;
    height: 99px;
    left: 476px;
    top: 80px;
    width: 812px;
    max-width: 1280px;
}

.privacy-matters-content {
    position: absolute;
    height: 99px;
    left: 0;
    top: 0;
    width: 812px;
}

.privacy-matters-text {
    position: absolute;
    height: 99px;
    left: 0;
    top: 0;
    width: 812px;
}

.privacy-matters-title {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
    left: 0;
    top: 0;
    margin: 0;
    white-space: nowrap;
}

.privacy-matters-description {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    left: 0;
    top: 72px;
    margin: 0;
    white-space: nowrap;
}

.privacy-matters-illustration {
    position: absolute;
    left: 500px;
    top: -60px;
    width: 316px;
    height: 316px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.privacy-matters-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 1024px) {
    .privacy-header-section {
        height: auto;
        padding: 80px 0;
    }
    
    .privacy-header-container {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
        border: none;
    }
    
    .privacy-header-content {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .privacy-header-title {
        position: static;
        left: auto;
        top: auto;
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .privacy-header-description {
        position: static;
        left: auto;
        top: auto;
        margin-bottom: 40px;
    }
    
    .privacy-header-illustration {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 265px;
        height: 265px;
        margin: 0 auto;
    }
    
    .privacy-main-section {
        height: auto;
        padding: 60px 0;
    }
    
    .privacy-main-container {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .privacy-main-content {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .privacy-toc-section {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 40px;
    }
    
    .privacy-toc-content {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
    }
    
    .privacy-toc-item {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 16px;
    }
    
    .privacy-toc-link {
        position: static;
        left: auto;
        top: auto;
        padding: 12px 16px;
        display: block;
    }
    
    .privacy-content-section {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 768px;
        margin: 0 auto;
    }
    
    .privacy-policy-section {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .privacy-policy-section-title {
        position: static;
        left: auto;
        top: auto;
        margin-bottom: 16px;
    }
    
    .privacy-policy-intro {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 16px;
    }
    
    .privacy-policy-intro-text {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
    }
    
    .privacy-policy-body {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
    }
    
    .privacy-policy-text {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
    }
    
    .privacy-robot-illustration {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 40px auto 0;
    }
    
    .privacy-faq-section {
        height: auto;
        padding: 60px 0;
    }
    
    .privacy-faq-container {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .privacy-faq-header {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 768px;
        margin: 0 auto 40px;
    }
    
    .privacy-faq-title {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 16px;
    }
    
    .privacy-faq-description {
        position: static;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .privacy-faq-list {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 768px;
        margin: 0 auto 40px;
    }
    
    .privacy-faq-item {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .privacy-faq-question {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
    }
    
    .privacy-faq-question-text {
        position: static;
        left: auto;
        top: auto;
    }
    
    .privacy-faq-icon {
        position: static;
        left: auto;
        top: auto;
    }
    
    .privacy-faq-answer {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        padding: 0 24px 20px;
    }
    
    .privacy-faq-answer-text {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
    }
    
    .privacy-faq-cta {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        text-align: center;
    }
    
    .privacy-faq-cta-content {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 24px;
    }
    
    .privacy-faq-cta-title {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 8px;
    }
    
    .privacy-faq-cta-description {
        position: static;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .privacy-faq-cta-button {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: auto;
        display: inline-block;
    }
    
    .privacy-matters-section {
        height: auto;
        padding: 60px 0;
    }
    
    .privacy-matters-container {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .privacy-matters-content {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 812px;
        margin-bottom: 40px;
    }
    
    .privacy-matters-text {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
    }
    
    .privacy-matters-title {
        position: static;
        left: auto;
        top: auto;
        margin-bottom: 16px;
    }
    
    .privacy-matters-description {
        position: static;
        left: auto;
        top: auto;
    }
    
    .privacy-matters-illustration {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 316px;
        height: 316px;
    }
}

@media (max-width: 768px) {
    .privacy-header-title {
        font-size: 32px;
    }
    
    .privacy-faq-title {
        font-size: 36px;
    }
    
    .privacy-faq-cta-title {
        font-size: 28px;
    }
    
    .privacy-matters-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .privacy-header-title {
        font-size: 28px;
    }
    
    .privacy-faq-title {
        font-size: 32px;
    }
    
    .privacy-faq-cta-title {
        font-size: 24px;
    }
    
    .privacy-matters-title {
        font-size: 28px;
    }
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-hero-section {
        height: auto;
        padding: 80px 0;
    }
    
    .contact-hero-left-content {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 768px;
        margin: 0 auto;
        padding: 20px;
        border: 1px solid #000000;
    }
    
    .contact-hero-component {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
    }
    
    .contact-hero-section-title {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .contact-hero-tagline-wrapper {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: auto;
        margin-bottom: 16px;
    }
    
    .contact-hero-tagline {
        position: static;
        color: #000000;
        left: auto;
        top: auto;
    }
    
    .contact-hero-content-text {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
    }
    
    .contact-hero-title {
        position: static;
        font-size: 48px;
        left: auto;
        top: auto;
        margin-bottom: 16px;
    }
    
    .contact-hero-description {
        position: static;
        left: auto;
        top: auto;
        margin-bottom: 40px;
    }
    
    .contact-hero-cta-button {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: auto;
    }
    
    .contact-hero-right-illustration {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 40px auto 0;
    }
    
    .contact-main-section {
        height: auto;
        padding: 80px 0;
    }
    
    .contact-main-container {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .contact-form-header-section {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .contact-form-tagline {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: auto;
        margin-bottom: 16px;
    }
    
    .contact-form-tagline-text {
        position: static;
        left: auto;
        top: auto;
    }
    
    .contact-form-headline-section {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
    }
    
    .contact-form-title {
        position: static;
        font-size: 36px;
        left: auto;
        top: auto;
        margin-bottom: 16px;
    }
    
    .contact-form-description {
        position: static;
        left: auto;
        top: auto;
        margin-bottom: 40px;
    }
    
    .contact-form-details-section {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form-container {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 616px;
    }
    
    .contact-form {
        position: static;
        height: auto;
        width: 100%;
    }
    
    .form-field-group {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 24px;
    }
    
    .form-message-group {
        height: auto;
    }
    
    .form-label {
        position: static;
        left: auto;
        top: auto;
        margin-bottom: 8px;
    }
    
    .form-input-container,
    .form-textarea-container {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 0;
    }
    
    .form-textarea-container {
        height: 180px;
    }
    
    .form-checkbox-group {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        margin-bottom: 24px;
    }
    
    .form-submit-container {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: auto;
    }
    
    .contact-details-container {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 584px;
    }
    
    .contact-details-row {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .contact-detail-item {
        position: static;
        height: auto;
        width: auto;
        margin-bottom: 0;
    }
    
    .contact-detail-address {
        position: static;
        height: auto;
        left: auto;
        top: auto;
        width: auto;
        grid-column: 1 / -1;
    }
    
    .contact-detail-content {
        position: static;
        height: auto;
    }
    
    .contact-detail-address-content {
        position: static;
        height: auto;
        width: auto;
    }
    
    .contact-detail-title {
        position: static;
        left: auto;
        top: auto;
        margin-bottom: 8px;
    }
    
    .contact-detail-subtitle {
        position: static;
        left: auto;
        top: auto;
        margin-bottom: 8px;
    }
    
    .contact-detail-link {
        position: static;
        left: auto;
        top: auto;
    }
    
    .contact-detail-address-text {
        position: static;
        left: auto;
        top: auto;
        width: auto;
    }
    
    .contact-illustration {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0;
    }
    
    .contact-hero-left-content {
        padding: 0 15px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-description {
        font-size: 16px;
    }
    
    .contact-hero-right-illustration {
        max-width: 300px;
        height: 300px;
    }
    
    .contact-main-section {
        padding: 60px 0;
    }
    
    .contact-main-container {
        padding: 0 15px;
    }
    
    .contact-form-title {
        font-size: 36px;
    }
    
    .contact-form-description {
        font-size: 16px;
    }
    
    .contact-details-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-detail-address {
        grid-column: 1;
    }
    
    .contact-illustration {
        max-width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }
    
    .contact-form-title {
        font-size: 28px;
    }
    
    .contact-hero-content,
    .contact-main-content {
        padding: 0 15px;
    }
}