:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --background-light: #f8fafc;
    --background-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --success-color: #4CAF50;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 80px 20px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.trust-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 45px 20px;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.trust-item span {
    font-size: 1rem;
    opacity: 0.9;
}

.problem-section {
    padding: 100px 20px;
    background-color: var(--background-light);
}

.content-split {
    display: flex;
    align-items: center;
    gap: 70px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.split-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.solution-intro {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

.solution-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

.services-preview {
    padding: 100px 20px;
    background-color: var(--background-gray);
}

.services-preview h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-section {
    padding: 90px 20px;
    background-color: var(--white);
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials {
    padding: 90px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--white);
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    opacity: 0.9;
    font-size: 0.95rem;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.cta-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.guarantee-section {
    padding: 70px 20px;
    background-color: var(--white);
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.guarantee-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-box .cta-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-box .cta-primary:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 25px 20px;
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--success-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #45a049;
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    flex-direction: row;
    align-items: flex-start;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    width: auto;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-intro {
    padding: 100px 20px;
    background-color: var(--white);
}

.mission-section {
    padding: 80px 20px;
    background-color: var(--background-light);
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.values-section {
    padding: 90px 20px;
    background-color: var(--white);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 35px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-section {
    padding: 80px 20px;
    background-color: var(--background-gray);
}

.expertise-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.expertise-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.expertise-list {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 2;
}

.expertise-list li {
    padding-left: 10px;
}

.team-section {
    padding: 90px 20px;
    background-color: var(--white);
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    max-width: 320px;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
}

.stats-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.stats-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-detail-content ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 20px;
}

.pricing-info {
    padding: 70px 20px;
    background-color: var(--background-light);
}

.pricing-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

.pricing-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-notice {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-notice h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-notice p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 30px;
}

.map-overlay p {
    margin: 0;
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.success-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.thanks-details {
    margin: 30px 0;
}

.service-confirmation {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.selected-service-box {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.selected-service-box strong {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 8px;
}

.step-item strong {
    display: block;
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.thanks-info {
    background-color: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 30px 0;
    text-align: left;
}

.thanks-info p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.thanks-resources {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.thanks-resources h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.resource-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--secondary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .content-split,
    .service-detail-grid,
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .modal-content {
        padding: 30px 25px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-actions a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .solution-intro h2,
    .services-preview h2 {
        font-size: 2rem;
    }

    .split-text h2 {
        font-size: 1.75rem;
    }
}
