/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, Roboto, Helvetica, sans-serif;
    background-color: #1E1E1E;
    color: #E9E9E9;
    line-height: 1.6;
}

.page-container {
    background-color: #1E1E1E;
    border: 1px solid #000;
    padding-top: 48px;
    overflow: hidden;
}

/* Navigation */
.navigation-bar {
    display: flex;
    width: 100%;
    padding: 0 80px;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    font-size: 14px;
    color: #E9E9E9;
    font-weight: 400;
    white-space: nowrap;
    justify-content: center;
    flex-wrap: wrap;
}

.company-logo {
    aspect-ratio: 4.93;
    object-fit: contain;
    object-position: center;
    width: 138px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

.cargo-logo {
    aspect-ratio: 4.93;
    object-fit: contain;
    object-position: center;
    width: 300px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

.nav-menu {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: center;
    gap: 24px;
    justify-content: end;
    flex-wrap: wrap;
    flex: 1;
}

.nav-link {
    color: #E9E9E9;
    text-decoration: none;
    align-self: stretch;
    margin: auto 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF5900;
}

.nav-cta-button {
    border-radius: 8px;
    background-color: #FF5900;
    color: #E9E9E9;
    text-decoration: none;
    align-self: stretch;
    margin: auto 0;
    padding: 8px 16px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.nav-cta-button:hover {
    background-color: #E54F00;
}

/* Hero Section */
.hero-section {
    margin-top: 60px;
    width: 100%;
    padding: 0 80px;
    text-align: center;
}

.hero-content {
    display: flex;
    width: 100%;
    padding-top: 40px;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    color: #E9E9E9;
    justify-content: start;
}

.main-title {
    font-size: 70px;
    font-weight: 800;
    line-height: 89px;
    letter-spacing: -2.8px;
    margin: 0;
}

.cargo-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 89px;
    letter-spacing: -2.8px;
    margin: 0;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    align-self: center;
    margin-top: 10px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    margin-top: 10px;
    width: 100%;
    padding: 40px 0;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    font-size: 16px;
    color: #E9E9E9;
    font-weight: 600;
    white-space: nowrap;
    justify-content: center;
}

.primary-cta-button {
    border-radius: 8px;
    background-color: #FF5900;
    border: none;
    display: flex;
    min-height: 46px;
    padding: 0 26px 0 32px;
    align-items: center;
    gap: 10px;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.primary-cta-button:hover {
    background-color: #E54F00;
}

.cta-icon {
    background-color: #E9E9E9;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-text {
    color: #E9E9E9;
    font-size: 16px;
    font-weight: 600;
}

/* Stats Cards */
.stats-cards {
    display: flex;
    margin-top: 10px;
    width: 100%;
    padding: 0 10px;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    border-radius: 8px;
    border: 1px solid #444;
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    min-height: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    padding: 20px;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    color: #E9E9E9;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    justify-content: center;
}

.stat-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    flex-shrink: 0;
}

.stat-number {
    align-self: stretch;
    margin: auto 0;
}

.stat-description {
    color: #A3A3A3;
    font-size: 14px;
    font-weight: 400;
    margin-top: 8px;
}

/* Clients Section */
.clients-section {
    margin-top: 60px;
    width: 100%;
    padding: 0 80px;
}

.section-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    color: #E9E9E9;
    text-align: center;
    justify-content: start;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.2px;
    margin: 0;
}

.section-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-top: 10px;
    width: 532px;
    max-width: 100%;
}

.clients-showcase {
    display: flex;
    margin-top: 20px;
    width: 100%;
    padding: 40px 0;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    justify-content: center;
}

.clients-label {
    color: #A3A3A3;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.64px;
    text-transform: uppercase;
}

.client-logos {
    display: flex;
    margin-top: 20px;
    width: 100%;
    align-items: center;
    gap: 40px 54px;
    /*justify-content: space-between;*/
	justify-content: center;
    flex-wrap: wrap;
}

.client-logo {
    object-fit: contain;
    object-position: center;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

.client-logo:nth-child(1) {
    aspect-ratio: 1.61;
    width: 45px;
}

.client-logo:nth-child(2) {
    aspect-ratio: 2.55;
    width: 74px;
}

.client-logo:nth-child(3) {
    aspect-ratio: 2.6;
    width: 73px;
}

.client-logo:nth-child(4) {
    aspect-ratio: 7.19;
    width: 201px;
}

.client-logo:nth-child(5) {
    aspect-ratio: 4.18;
    width: 117px;
}

.client-logo:nth-child(6) {
    aspect-ratio: 5.29;
    width: 148px;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    margin-top: 20px;
    width: 100%;
    align-items: stretch;
    gap: 40px;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    border-radius: 24px;
    border: 1px solid #444;
    display: flex;
    min-width: 240px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 300px;
}

.testimonial-card:nth-child(3) {
    align-self: start;
}

.testimonial-icon {
    border-radius: 8px;
    background-color: #444;
    display: flex;
    min-height: 64px;
    width: 64px;
    padding: 6px;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.benefit-icon {
    aspect-ratio: 1.3;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.testimonial-title {
    color: #E9E9E9;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 5.2px;
    text-transform: uppercase;
    margin-top: 12px;
}

.testimonial-author {
    margin-top: 12px;
    width: 100%;
}

.author-name {
    color: #E9E9E9;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

.author-position {
    color: #A3A3A3;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin: 0;
}

.testimonial-text {
    color: #A3A3A3;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.13px;
    margin-top: 12px;
}

/* International Section */
.international-section {
    display: flex;
    margin-top: 60px;
    width: 100%;
    padding: 0 80px;
    align-items: center;
    gap: 40px 100px;
    overflow: hidden;
    /*justify-content: space-between;*/
	justify-content: center;
    flex-wrap: wrap;
}

.international-content {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    width: 532px;
}

.international-header {
    width: 100%;
    font-weight: 700;
}

.section-label {
    color: #FF5900;
    font-size: 12px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
}

.international-title {
    color: #E9E9E9;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -1.2px;
    margin: 0;
}

.international-description {
    color: #E9E9E9;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-top: 20px;
}

.highlighted-countries {
    font-weight: 600;
    color: #FF5900;
}

.map-container {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    padding: 20px 0;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    justify-content: start;
    width: 486px;
}

.world-map {
    aspect-ratio: 0.87;
    object-fit: contain;
    object-position: center;
    width: 486px;
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
}

/* Services Section */
.services-section {
    margin-top: 60px;
    width: 100%;
    padding: 0 80px;
}

.services-section .section-header {
    padding: 10px;
}

.services-section .section-description {
    width: 838px;
    max-width: 100%;
}

.services-grid {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: center;
    gap: 24px 80px;
    justify-content: start;
    flex-wrap: wrap;
}

.service-item {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: start;
    gap: 40px 78px;
    /*justify-content: space-between;*/
	justify-content: center;
    flex-wrap: wrap;
    flex-grow: 1;
    flex-shrink: 1;
    width: 896px;
}

.service-item.with-icon {
    position: relative;
}

.service-visual {
    border-radius: 4px;
    min-width: 240px;
    width: 460px;
}

.service-card {
    border-radius: 4px;
    border: 1px solid #444;
    display: flex;
    padding: 17px 46px 81px;
    flex-direction: column;
    overflow: hidden;
    align-items: end;
}

.service-card.with-image {
    padding: 17px 26px 2px;
    align-items: stretch;
}

.service-card-header {
    align-self: center;
    margin-left: 29px;
    width: 230px;
    max-width: 100%;
}

.service-card.with-image .service-card-header {
    margin-left: 29px;
}

.service-name {
    color: #E9E9E9;
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 5.2px;
    text-transform: uppercase;
    margin: 0;
}

.service-card.with-image .service-name {
    text-align: left;
}

.service-tagline {
    color: #A3A3A3;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.13px;
    margin-top: 4px;
}

.service-image {
    object-fit: contain;
    /*object-position: center;*/
	object-position: 15% 85%;
    width: 100%;
    margin-top: 10px;
}

.service-image:nth-of-type(1) {
    aspect-ratio: 4.42;
    width: 434px;
}

.service-image:nth-of-type(2) {
    aspect-ratio: 3.97;
    width: 302px;
    align-self: end;
    max-width: 100%;
}

.service-details {
    min-width: 240px;
    width: 580px;
}

.detail-separator {
    border-color: #A3A3A3;
    border-style: solid;
    border-width: 1px;
    min-height: 1px;
    width: 100%;
    margin: 12px 0;
}

.detail-separator:first-child {
    margin-top: 0;
}

.service-feature {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 40px;
    justify-content: start;
    flex-wrap: wrap;
}

.feature-title {
    align-self: stretch;
    gap: 10px;
    font-size: 14px;
    color: #E9E9E9;
    font-weight: 700;
    flex-grow: 1;
    flex-shrink: 1;
    width: 160px;
    margin: 0;
}

.feature-description {
    color: #A3A3A3;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.13px;
    flex-grow: 1;
    flex-shrink: 1;
    width: 300px;
    margin: 0;
}

.service-icon-overlay2 {
    border-radius: 8px;
    background-color: #FF5900;
    border: 4px solid #1E1E1E;
    position: absolute;
    z-index: 1;
    display: flex;
    width: 94px;
    flex-shrink: 0;
    height: 94px;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.service-icon-overlay {
    border-radius: 8px;
    background-color: #FF5900;
    border: 4px solid #1E1E1E;
    position: absolute;
    z-index: 1;
    display: flex;
    width: 94px;
    flex-shrink: 0;
    height: 94px;
    align-items: center;
    gap: 10px;
    justify-content: center;
    left: 21px;
    top: -51px;
}

.service-icon-overlay.reclutamiento-icon {
    padding: 10px;
	left: -15px;
	top: -15px;
}

.service-icon-overlay.bolsa-icon {
    padding: 10px;
	left: -15px;
	top: -15px;
}

.service-icon-overlay.celula-icon {
    padding: 10px;
	left: -15px;
	top: -15px;
}

.service-icon-overlay.projects-icon {
    padding: 10px;
	left: -15px;
	top: -15px;
}

.service-icon-overlay.outsourcing-icon {
    padding: 10px;
	left: -15px;
	top: -15px;
}

.overlay-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 58px;
    align-self: stretch;
    margin: auto 0;
}

.outsourcing-icon.overlay-icon {
    width: 56px;
}

/* Contact Section */
.contact-section {
    margin-top: 60px;
    width: 100%;
}

.contact-main-title {
    width: 100%;
    padding: 0 169px;
    overflow: hidden;
    font-size: 40px;
    color: #E9E9E9;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    letter-spacing: -1.2px;
    line-height: 1;
    margin: 0;
}

.contact-container {
    display: flex;
    margin-top: 40px;
    width: 100%;
    padding: 0 80px;
    align-items: stretch;
    gap: 40px;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
}

.contact-text {
    width: 100%;
    padding: 0 20px;
	text-align: center;
}

.contact-header {
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-title {
    color: #E9E9E9;
    font-size: 20px;
    letter-spacing: 5.2px;
    margin: 0;
}

.contact-description {
    color: #A3A3A3;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.13px;
    margin-top: 12px;
}

.countries-contact {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: center;
    /*gap: 40px;*/
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.country-contact {
    /*align-self: stretch;*/
    align-self: center;
	margin: auto 0;
    flex-grow: 1;
    flex-shrink: 1;
    width: 131px;
}

.country-name {
    color: #E9E9E9;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 5.2px;
    text-transform: uppercase;
    margin: 0;
}

.contact-details {
    display: flex;
    margin-top: 8px;
    width: 100%;
    flex-direction: column;
    /*align-self: stretch;*/
    align-self: center;
    justify-content: start;
}

.contact-person {
    color: #E9E9E9;
    font-size: 16px;
    font-weight: 700;
    /*align-self: start;*/
    align-self: center;
    margin: 0;
}

.contact-info-list {
    display: flex;
    margin-top: 4px;
    width: 100%;
    flex-direction: column;
	/*align-self: start;*/
    align-self: center;
    font-size: 14px;
    color: #A3A3A3;
    font-weight: 400;
    justify-content: start;
}

.contact-email,
.contact-phone {
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    align-self: start;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
}

.contact-form {
    border-radius: 12px;
    background-color: #151515;
    display: flex;
    width: 100%;
    padding: 32px;
    flex-direction: column;
    align-items: stretch;
    justify-content: end;
}

.form-field {
    width: 100%;
}

.form-field:nth-child(2) {
    margin-top: 24px;
}

.field-label {
    align-self: stretch;
    width: 200px;
    max-width: 100%;
    gap: 10px;
    font-size: 16px;
    color: #E9E9E9;
    font-weight: 700;
    white-space: nowrap;
    display: block;
}

.form-input {
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #444;
    margin-top: 12px;
    min-height: 41px;
    width: 100%;
    padding: 10px 12px;
    gap: 10px;
    font-size: 14px;
    color: #444;
    font-weight: 400;
    background-color: transparent;
}

.form-input::placeholder {
    color: #444;
}

.form-textarea {
    border-radius: 8px;
    border: 1px solid #444;
    margin-top: 12px;
    min-height: 200px;
    width: 100%;
    padding: 10px 12px;
    gap: 10px;
    font-size: 14px;
    color: #444;
    font-weight: 400;
    background-color: transparent;
    resize: vertical;
    font-family: inherit;
}

.form-textarea::placeholder {
    color: #444;
}

.form-submit-button {
    align-self: end;
    border-radius: 8px;
    background-color: #444;
    border: none;
    margin-top: 24px;
    min-height: 46px;
    padding: 0 32px;
    gap: 10px;
    font-size: 16px;
    color: #E9E9E9;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-button:hover {
    background-color: #555;
}

.privacy-disclaimer {
    align-self: stretch;
    flex: 1;
    margin-top: 12px;
    width: 100%;
    gap: 10px;
    font-size: 12px;
    color: #A3A3A3;
    font-weight: 400;
    letter-spacing: -0.13px;
    line-height: 18px;
}

.privacy-link {
    font-weight: 600;
    color: #E9E9E9;
}

/* Footer */
.page-footer {
    display: flex;
    margin-top: 60px;
    width: 100%;
    padding: 20px 80px;
    align-items: start;
    overflow: hidden;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-main {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-brand {
    align-self: stretch;
    font-size: 12px;
    color: #A3A3A3;
    font-weight: 400;
    letter-spacing: -0.13px;
    width: 138px;
}

.brand-info {
    display: flex;
    max-width: 100%;
    width: 138px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.footer-logo {
    aspect-ratio: 4.93;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.copyright-text {
    margin-top: 6px;
}

.social-icon {
    /*
	aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 24px;
    margin-top: 32px;
	*/
	aspect-ratio: 4.93;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.footer-content {
    min-width: 240px;
    padding: 0 48px;
    flex: 1;
}

.footer-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.footer-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #A3A3A3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.64px;
    justify-content: start;
    margin: 0;
}

.footer-menu {
    display: flex;
    margin-top: 20px;
    width: 344px;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    font-size: 14px;
    color: #E9E9E9;
    font-weight: 400;
    justify-content: start;
}

.footer-link {
    color: #E9E9E9;
    text-decoration: none;
    align-self: stretch;
    min-height: 21px;
    width: 100%;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF5900;
}

.footer-link:nth-child(2) {
    align-self: start;
    margin-top: 8px;
}

.footer-decoration {
    aspect-ratio: 3;
    object-fit: contain;
    object-position: center;
    width: 138px;
    border-radius: 50px;
    min-height: 46px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .navigation-bar {
        max-width: 100%;
        padding: 0 20px;
        white-space: initial;
    }

    .nav-menu {
        max-width: 100%;
        white-space: initial;
    }

    .nav-link {
        white-space: initial;
    }

    .nav-cta-button {
        white-space: initial;
    }

    .hero-section {
        max-width: 100%;
        padding: 0 20px;
        margin-top: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .main-title {
        max-width: 100%;
        font-size: 40px;
        line-height: 57px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta {
        max-width: 100%;
        white-space: initial;
    }

    .primary-cta-button {
        padding: 0 20px;
        white-space: initial;
    }

    .stats-cards {
        max-width: 100%;
    }

    .stat-header {
        white-space: initial;
    }

    .clients-section {
        max-width: 100%;
        padding: 0 20px;
        margin-top: 40px;
    }

    .section-header {
        max-width: 100%;
    }

    .section-title {
        max-width: 100%;
    }

    .section-description {
        max-width: 100%;
    }

    .clients-showcase {
        max-width: 100%;
    }

    .clients-label {
        max-width: 100%;
    }

    .client-logos {
        max-width: 100%;
    }

    .testimonials-grid {
        max-width: 100%;
    }

    .international-section {
        max-width: 100%;
        padding: 0 20px;
        margin-top: 40px;
    }

    .international-content {
        max-width: 100%;
    }

    .international-header {
        max-width: 100%;
    }

    .section-label {
        max-width: 100%;
    }

    .international-title {
        max-width: 100%;
    }

    .international-description {
        max-width: 100%;
    }

    .map-container {
        max-width: 100%;
    }

    .services-section {
        max-width: 100%;
        padding: 0 20px;
        margin-top: 40px;
    }

    .services-section .section-header {
        max-width: 100%;
    }

    .services-section .section-description {
        max-width: 100%;
    }

    .services-grid {
        max-width: 100%;
    }

    .service-item {
        max-width: 100%;
    }

    .service-visual {
        max-width: 100%;
    }

    .service-card {
        max-width: 100%;
        padding: 17px 20px 81px;
    }

    .service-card.with-image {
        max-width: 100%;
        padding: 17px 20px 2px;
    }

    .service-image:nth-of-type(1) {
        max-width: 100%;
    }

    .service-image:nth-of-type(2) {
        max-width: 100%;
    }

    .service-details {
        max-width: 100%;
    }

    .detail-separator {
        max-width: 100%;
    }

    .service-feature {
        max-width: 100%;
    }

    .contact-section {
        max-width: 100%;
        margin-top: 40px;
    }

    .contact-main-title {
        max-width: 100%;
        padding: 0 20px;
        white-space: initial;
    }

    .contact-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-text {
        max-width: 100%;
    }

    .contact-header {
        max-width: 100%;
    }

    .contact-title {
        max-width: 100%;
    }

    .contact-description {
        max-width: 100%;
    }

    .countries-contact {
        max-width: 100%;
    }

    .contact-form-container {
        max-width: 100%;
    }

    .contact-form {
        max-width: 100%;
        padding: 20px;
    }

    .field-label {
        white-space: initial;
    }

    .form-input {
        max-width: 100%;
    }

    .form-textarea {
        max-width: 100%;
        padding-bottom: 100px;
    }

    .form-submit-button {
        padding: 0 20px;
        white-space: initial;
    }

    .privacy-disclaimer {
        max-width: 100%;
    }

    .page-footer {
        max-width: 100%;
        padding: 20px;
        margin-top: 40px;
    }

    .footer-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .footer-section {
        max-width: 100%;
    }
}
