/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1A1A1A;
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2C5F7D;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5A9BB5;
}

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header and Navigation */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5F7D;
}

.logo:hover {
    color: #5A9BB5;
}

.nav-menu {
    display: none;
    list-style: none;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #2C2C2C;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2C5F7D;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2C5F7D;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #2C5F7D;
    color: #FFFFFF;
    border-color: #2C5F7D;
}

.btn-primary:hover {
    background-color: #1F4A5C;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: #D4AF37;
    color: #FFFFFF;
    border-color: #D4AF37;
}

.btn-secondary:hover {
    background-color: #B8951F;
    color: #FFFFFF;
}

.btn-outline {
    background-color: transparent;
    color: #2C5F7D;
    border-color: #2C5F7D;
}

.btn-outline:hover {
    background-color: #2C5F7D;
    color: #FFFFFF;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #2C5F7D;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #555555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual svg {
    width: 100%;
    max-width: 400px;
}

/* Page Hero */
.page-hero {
    background-color: #E8F4F8;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #2C5F7D;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-intro,
.section-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Philosophy Section */
.philosophy {
    background-color: #F9FAFB;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
}

/* Services Highlight */
.services-highlight {
    background-color: #FFFFFF;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-feature h3 {
    color: #2C5F7D;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #D4AF37;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
}

.link-arrow:hover {
    color: #B8951F;
}

/* Story Section */
.story {
    background-color: #F9FAFB;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-visual svg {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    min-width: 60px;
}

.benefit-content h3 {
    color: #2C5F7D;
    margin-bottom: 0.5rem;
}

/* Process Steps */
.process {
    background-color: #FFFFFF;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #F9FAFB;
    border-radius: 8px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

/* Testimonials */
.testimonials {
    background-color: #2C5F7D;
    color: #FFFFFF;
}

.testimonials h2 {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #D4AF37;
}

/* Achievements / Stats */
.achievements {
    background-color: #F9FAFB;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2C5F7D;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.125rem;
    color: #555555;
}

/* FAQ */
.faq {
    background-color: #FFFFFF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: #2C2C2C;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2C5F7D;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #555555;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2C5F7D 0%, #5A9BB5 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #CCCCCC;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #CCCCCC;
}

.footer-section a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #999999;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.active {
    display: flex;
}

.modal-content {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-options {
    margin-bottom: 1.5rem;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    cursor: pointer;
}

.cookie-options input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* About Page Specific */
.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-visual svg {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.team {
    background-color: #F9FAFB;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
}

.member-role {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 1rem;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-intro {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2C5F7D;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-point {
    padding: 1.5rem;
    background-color: #F9FAFB;
    border-left: 4px solid #D4AF37;
}

.milestones {
    background-color: #FFFFFF;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-left: 3px solid #E5E5E5;
    padding-left: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 2rem;
    width: 13px;
    height: 13px;
    background-color: #D4AF37;
    border-radius: 50%;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5F7D;
}

.timeline-content h3 {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.partners {
    background-color: #F9FAFB;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partner-item {
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Services Page */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content {
    font-size: 1.125rem;
    color: #555555;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item-detailed {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #F9FAFB;
    border-radius: 8px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
}

.service-icon-large svg {
    width: 100%;
    height: 100%;
}

.service-title-price h2 {
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #D4AF37;
}

.service-description ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-description li {
    margin-bottom: 0.5rem;
}

.service-note {
    font-style: italic;
    color: #2C5F7D;
    margin-top: 1rem;
}

.service-benefits {
    background-color: #E8F4F8;
}

.benefits-grid-alt {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 8px;
}

.benefit-card h3 {
    color: #2C5F7D;
    margin-bottom: 0.75rem;
}

.service-process {
    background-color: #FFFFFF;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flow-step {
    padding: 1.5rem;
    background-color: #F9FAFB;
    border-radius: 8px;
    text-align: center;
}

.flow-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2C5F7D;
    color: #FFFFFF;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.flow-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #D4AF37;
    display: none;
}

/* Contact Page */
.contact-info {
    background-color: #FFFFFF;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h2,
.contact-block h3 {
    color: #2C5F7D;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #777777;
    font-style: italic;
}

.map-placeholder {
    background-color: #F9FAFB;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder svg {
    width: 100%;
    height: auto;
}

.about-company {
    background-color: #F9FAFB;
}

.benefits-list-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-simple {
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.benefit-simple h3 {
    color: #2C5F7D;
    margin-bottom: 0.75rem;
}

.company-info-section {
    background-color: #FFFFFF;
}

.company-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-detail {
    padding: 1rem;
    background-color: #F9FAFB;
    border-radius: 4px;
}

.company-detail h3 {
    font-size: 1rem;
    color: #777777;
    margin-bottom: 0.5rem;
}

.company-detail p {
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-message {
    font-size: 1.125rem;
    color: #555555;
    margin-bottom: 3rem;
}

.next-steps {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2C5F7D;
    color: #FFFFFF;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #555555;
    margin-bottom: 0;
}

.thank-you-links p {
    margin-bottom: 1.5rem;
}

.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-intro {
    font-size: 0.875rem;
    color: #777777;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2C5F7D;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    text-decoration: underline;
}

.legal-footer-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E5;
    font-style: italic;
}

.cookie-table {
    margin-top: 2rem;
}

.cookie-item {
    background-color: #F9FAFB;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.cookie-item h4 {
    color: #2C5F7D;
    margin-bottom: 0.75rem;
}

.cookie-item p {
    margin-bottom: 0.5rem;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    /* Typography */
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        background-color: transparent;
    }

    .nav-menu li {
        margin-left: 2rem;
    }

    .nav-menu a {
        padding: 0;
    }

    /* Hero */
    .hero .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-content {
        text-align: left;
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

    /* Grid Layouts */
    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

    .services-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-feature {
        flex: 1 1 calc(50% - 1.25rem);
        min-width: 300px;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1.5;
    }

    .story-visual {
        flex: 1;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 280px;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(25% - 1.5rem);
        min-width: 200px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
        min-width: 250px;
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    /* About Page */
    .content-columns {
        flex-direction: row;
        align-items: center;
    }

    .column-text {
        flex: 1.5;
    }

    .column-visual {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
    }

    .team-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 250px;
    }

    .partners-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .partner-item {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
    }

    /* Services Page */
    .service-header {
        flex-direction: row;
        align-items: center;
    }

    .benefits-grid-alt {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 280px;
    }

    .process-flow {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .flow-step {
        flex: 1 1 calc(33.333% - 1rem);
        min-width: 200px;
    }

    .flow-arrow {
        display: block;
        flex: 0 0 30px;
        align-self: center;
    }

    /* Contact Page */
    .contact-grid {
        flex-direction: row;
    }

    .contact-details {
        flex: 1;
    }

    .contact-visual {
        flex: 1;
    }

    .benefits-list-simple {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-simple {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }

    .company-details-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .company-detail {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 250px;
    }

    /* Thank You Page */
    .link-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 6rem 0;
    }
}