:root {
    --color-primary: #2c3e50;
    --color-secondary: #3498db;
    --color-accent: #e74c3c;
    --color-light: #ecf0f1;
    --color-dark: #1a252f;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-white: #ffffff;
    --color-success: #27ae60;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    color: var(--color-primary);
}

h1 {
    font-size: 2.75rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #2980b9;
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text-light);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

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

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

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

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

.btn-full {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 1.25rem;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-content a {
    color: var(--color-secondary);
}

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

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

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo a:hover {
    color: var(--color-secondary);
}

.ad-disclosure {
    padding: 0.375rem 0.75rem;
    background-color: var(--color-light);
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.hero {
    min-height: 80vh;
}

.split-screen {
    display: flex;
    align-items: stretch;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--color-light);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header.left-aligned {
    text-align: left;
    max-width: none;
    margin: 0 0 2rem;
}

.section-header p {
    margin-top: 1rem;
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.features-section {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-light);
}

.highlight-section {
    background-color: var(--color-light);
}

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

.split-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.split-content .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

.split-image {
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.services-preview {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

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

.service-item {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    margin-bottom: 0.75rem;
}

.service-info p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

.service-visual {
    flex: 1;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

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

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 5rem 2rem;
}

.cta-section.alt {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2980b9 100%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: var(--color-light);
}

.trust-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.trust-text {
    flex: 2;
}

.trust-text h2 {
    margin-bottom: 1.5rem;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-list li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--color-text-light);
}

.trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-white);
}

.page-hero-content h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro {
    padding: 0;
}

.about-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: var(--color-light);
}

.values-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

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

.team-section {
    padding: 0;
}

.team-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

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

.team-content h2 {
    margin-bottom: 1.5rem;
}

.team-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.process-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-light);
    line-height: 1;
    min-width: 80px;
}

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

.step-content p {
    color: var(--color-text-light);
}

.services-overview {
    padding: 3rem 0;
}

.service-detail {
    border-bottom: 1px solid var(--color-light);
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-detail-content > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background-color: var(--color-success);
    border-radius: 50%;
}

.service-pricing {
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.pricing-note {
    padding: 4rem 2rem;
    background-color: var(--color-light);
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.note-content h2 {
    margin-bottom: 1rem;
}

.note-content p {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.contact-section {
    padding: 4rem 0;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    background-color: var(--color-light);
}

.contact-info h2 {
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.contact-block p {
    color: var(--color-text);
}

.contact-form-wrapper {
    flex: 1;
    padding: 4rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--color-light);
    border-radius: 6px;
    transition: var(--transition);
    background-color: var(--color-white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.map-section {
    padding: 0;
}

.map-placeholder {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    max-width: 500px;
    text-align: center;
}

.map-overlay p {
    color: var(--color-text-light);
    margin: 0;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-success);
    border-radius: 50%;
    color: var(--color-white);
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content > p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: 12px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.thanks-next-steps li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--color-text-light);
}

.thanks-next-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
}

.thanks-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.legal-date {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

.legal-content li {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 4px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

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

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

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

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

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding-top: 4rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
    max-width: 800px;
    margin: 1rem auto 0;
    font-size: 0.8125rem;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .split-screen {
        flex-direction: column;
    }

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

    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .split-content,
    .about-text,
    .team-content,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 3rem 2rem;
    }

    .trust-content {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-stats {
        flex-direction: row;
        width: 100%;
    }

    .stat-item {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-light);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .ad-disclosure {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    .hero {
        min-height: auto;
    }

    .features-grid,
    .values-grid {
        flex-direction: column;
    }

    .feature-card,
    .value-card {
        min-width: 100%;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        font-size: 2rem;
        min-width: auto;
    }

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

    .footer-links {
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .trust-stats {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-content,
    .split-content,
    .about-text,
    .team-content,
    .service-detail-content,
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem 1rem;
    }

    .features-section,
    .services-preview,
    .process-section,
    .trust-section {
        padding: 3rem 1rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .legal-content {
        padding: 2rem 1rem;
    }

    .price-value {
        font-size: 1.5rem;
    }
}
