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

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    text-align: center;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #27ae60;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #27ae60;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-text-content p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #27ae60;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.inline-link {
    color: #27ae60;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.inline-link:hover {
    border-bottom-color: #27ae60;
}

/* Intro Statement */
.intro-statement {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.intro-statement h2 {
    font-size: 2rem;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-statement p {
    font-size: 1.125rem;
    color: #546e7a;
}

/* Split Sections */
.split-reverse,
.split-standard {
    display: flex;
    flex-direction: column;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.split-content h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Services Grid */
.services-grid {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-icon img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    padding: 1.5rem 1.5rem 1rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.price {
    padding: 0 1.5rem 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #229954;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    flex-direction: column;
}

.testimonial-image,
.testimonial-content {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

blockquote {
    border-left: 4px solid #27ae60;
    padding-left: 1.5rem;
}

blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    color: #95a5a6;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.process-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #546e7a;
}

/* CTA Split */
.cta-split {
    display: flex;
    flex-direction: column;
}

.cta-content {
    flex: 1;
    padding: 4rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-content .cta-primary {
    background-color: #ffffff;
    color: #27ae60;
}

.cta-content .cta-primary:hover {
    background-color: #f8f9fa;
}

.cta-visual {
    flex: 1;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    margin: 1rem;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #95a5a6;
    cursor: pointer;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.selected-service-display {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

/* Page Hero */
.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Detail Split */
.service-detail-split {
    display: flex;
    flex-direction: column;
}

.service-detail-split.reverse {
    flex-direction: column;
}

.service-detail-content {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
}

.detail-list {
    margin: 2rem 0;
}

.detail-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 2rem 0 1.5rem;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Centered */
.cta-centered {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.cta-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-centered p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Page */
.about-split {
    display: flex;
    flex-direction: column;
}

.about-content {
    flex: 1;
    padding: 4rem 2rem;
}

.about-content h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
}

.about-image {
    flex: 1;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.value-item p {
    color: #546e7a;
}

/* Approach Split */
.approach-split {
    display: flex;
    flex-direction: column;
}

.approach-split.reverse {
    flex-direction: column;
}

.approach-content {
    flex: 1;
    padding: 4rem 2rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
}

.approach-image {
    flex: 1;
    min-height: 400px;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.philosophy-section h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.philosophy-section p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
}

/* Commitment Split */
.commitment-split {
    display: flex;
    flex-direction: column;
}

.commitment-content {
    flex: 1;
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.commitment-image {
    flex: 1;
    min-height: 400px;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Difference Section */
.difference-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.difference-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.difference-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.difference-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.difference-item p {
    color: #546e7a;
}

/* Contact Split */
.contact-split {
    display: flex;
    flex-direction: column;
}

.contact-info {
    flex: 1;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: #27ae60;
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #27ae60;
    text-decoration: underline;
}

.service-areas {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-areas h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-areas p {
    color: #546e7a;
    margin-bottom: 0;
}

.contact-map {
    flex: 1;
    min-height: 400px;
}

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

/* Response Info */
.response-info {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.response-info h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.response-info p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-hero p {
    font-size: 1.25rem;
}

.thanks-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.thanks-message {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid #27ae60;
}

.thanks-message p {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message p:last-child {
    margin-bottom: 0;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-top: 0.5rem;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem 5rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.updated-date {
    color: #95a5a6;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin: 2.5rem 0 1rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    color: #27ae60;
    margin: 1.5rem 0 0.75rem;
}

.legal-page p {
    color: #546e7a;
    margin-bottom: 1rem;
}

.legal-page ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page li {
    color: #546e7a;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #27ae60;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookie-table td {
    color: #546e7a;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.footer-col p {
    color: #95a5a6;
    line-height: 1.6;
}

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

.footer-col a {
    color: #95a5a6;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #27ae60;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .split-reverse {
        flex-direction: row-reverse;
    }

    .split-standard {
        flex-direction: row;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonial-split {
        flex-direction: row;
    }

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

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

    .cta-split {
        flex-direction: row;
    }

    .service-detail-split {
        flex-direction: row;
    }

    .service-detail-split.reverse {
        flex-direction: row-reverse;
    }

    .about-split {
        flex-direction: row;
    }

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

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .approach-split {
        flex-direction: row;
    }

    .approach-split.reverse {
        flex-direction: row-reverse;
    }

    .commitment-split {
        flex-direction: row;
    }

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

    .difference-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-split {
        flex-direction: row;
    }

    .steps-grid {
        flex-direction: row;
    }

    .thanks-links {
        flex-direction: row;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-item {
        flex: 1;
    }

    .difference-grid {
        flex-wrap: nowrap;
    }

    .difference-item {
        flex: 1;
    }
}

/* Mobile Menu */
@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }

    .main-nav li {
        padding: 0;
    }

    .main-nav a {
        display: block;
        padding: 1rem 1.25rem;
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }

    .hero-text-content p {
        font-size: 1.125rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .thanks-hero h1 {
        font-size: 2rem;
    }
}
