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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

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

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

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

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

nav.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split,
.split-section,
.page-hero-split {
    display: flex;
    min-height: 90vh;
    padding-top: 80px;
}

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content,
.split-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual,
.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-visual img,
.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

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

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

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

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

.cta-large {
    background: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.cta-large:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.cta-text {
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    font-size: 1.05rem;
}

.cta-text:hover {
    color: var(--accent-color);
}

.split-section {
    min-height: auto;
    padding-top: 0;
}

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

.split-section:nth-child(even) {
    background: var(--bg-light);
}

.trust-banner {
    background: var(--primary-color);
    color: white;
    padding: 3rem 5%;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 1.1rem;
    color: white;
}

.trust-text span {
    font-size: 0.9rem;
    color: #bdc3c7;
}

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

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

.insight-marker {
    background: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.insight-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.insight-item p {
    margin-bottom: 0;
}

.testimonial-inline {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5dade2 100%);
    padding: 4rem 5%;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    color: white;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

.testimonial-content cite {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-style: normal;
}

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

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

.step-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.process-step p {
    margin-bottom: 0;
    color: var(--text-light);
}

.services-highlight {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-card p {
    color: var(--text-light);
    flex-grow: 1;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-service {
    background: var(--secondary-color);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-service:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.split-form {
    flex: 1;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    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(--secondary-color);
}

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

.btn-submit {
    background: var(--accent-color);
    color: white;
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 5rem 5%;
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #27ae60;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 5%;
    z-index: 10000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    color: var(--text-dark);
}

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

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

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

.btn-cookie-accept:hover {
    background: #27ae60;
}

.btn-cookie-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-cookie-reject:hover {
    background: #dee2e6;
}

.page-hero-split {
    min-height: 60vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4rem 5%;
    background: var(--bg-light);
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-large .stat-number {
    font-size: 3.5rem;
}

.stat-large .stat-label {
    font-size: 1rem;
}

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

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

.team-section {
    padding: 5rem 5%;
    background: white;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 280px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.member-role {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-section {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.approach-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.services-detail {
    padding: 5rem 5%;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-detail-visual img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.badge-inline {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.btn-service-detail {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.pricing-notes {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.pricing-notes h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-info {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-note {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.pricing-note h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.pricing-note p {
    color: var(--text-light);
    margin: 0;
}

.comparison-section {
    padding: 4rem 5%;
    background: white;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.3rem;
}

.comparison-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column {
    flex: 1;
    padding: 2.5rem;
    border-radius: 12px;
}

.comparison-column:first-child {
    background: #fff5f5;
}

.comparison-column:last-child {
    background: #f0fdf4;
}

.comparison-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
}

.comparison-list.negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-list.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-info-section {
    padding: 4rem 5%;
}

.contact-split {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-map {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-address,
.contact-email {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-email a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.hours-row .day {
    font-weight: 600;
}

.hours-row .time {
    color: var(--text-light);
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

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

.faq-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.3rem;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

.preferred-contact {
    padding: 4rem 5%;
    background: white;
    text-align: center;
}

.preferred-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.preferred-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

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

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-service-confirmation {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-service-confirmation h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.thanks-service-confirmation span {
    color: var(--secondary-color);
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

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

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-num {
    background: var(--secondary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

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

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #2980b9;
}

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

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

.urgent-notice {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--warning-color);
    margin: 2rem 0;
}

.urgent-notice h3 {
    color: var(--warning-color);
    margin-bottom: 0.8rem;
}

.urgent-notice p {
    margin-bottom: 0.5rem;
}

.contact-email-display {
    font-weight: 600;
}

.additional-resources {
    padding: 4rem 5%;
    background: white;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.3rem;
}

.resources-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

.resource-link {
    color: var(--secondary-color);
    font-weight: 600;
}

.resource-link:hover {
    color: var(--accent-color);
}

.legal-page {
    padding: 6rem 5% 4rem;
    min-height: 100vh;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

.legal-content strong {
    color: var(--primary-color);
}

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

.cookies-table thead {
    background: var(--bg-light);
}

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

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

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

    h2 {
        font-size: 2rem;
    }

    .hero-split,
    .split-section,
    .page-hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-content,
    .split-content {
        padding: 3rem 5%;
    }

    .hero-visual,
    .split-visual {
        min-height: 400px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: auto;
    }

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

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

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

    .resources-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    nav.nav-floating {
        padding: 1rem 4%;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-link {
        padding: 1rem 4%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-items {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .sticky-cta {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .sticky-cta-btn {
        display: block;
        text-align: center;
    }

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

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

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

    .service-detail-split {
        padding: 2rem;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .hero-content,
    .split-content {
        padding: 2rem 4%;
    }

    .service-card {
        padding: 1.5rem;
    }

    .price-display {
        font-size: 2.5rem;
    }

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

    .stat-large .stat-number {
        font-size: 2.8rem;
    }
}