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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

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

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

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-standard {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.navigation {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d6a 0%, #2c5f7d 100%);
    color: white;
    text-align: center;
    padding: 80px 24px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-section h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 42px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 38px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a4d6a;
    color: white;
}

.story-intro {
    padding: 120px 24px 80px;
    background: var(--bg-white);
}

.story-intro h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.story-intro p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-intro p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.problem-amplification {
    padding: 80px 24px;
    background: var(--bg-light);
}

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

.split-image {
    flex: 1;
    min-width: 320px;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.split-text {
    flex: 1;
    min-width: 320px;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.split-text ul {
    margin: 24px 0 24px 24px;
}

.split-text ul li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-dark);
}

.split-text em {
    font-style: italic;
    color: var(--primary-color);
}

.insight-reveal {
    padding: 100px 24px;
    background: var(--bg-white);
}

.insight-reveal h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
}

.insight-reveal p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.insight-highlight {
    background: #fff3e0;
    border-left: 4px solid var(--secondary-color);
    padding: 24px 28px;
    font-size: 21px;
    font-weight: 500;
    margin: 32px 0;
    border-radius: 4px;
}

.trust-building {
    padding: 100px 24px;
    background: var(--bg-light);
}

.trust-building h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--success-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.testimonials-inline {
    padding: 80px 24px;
    background: var(--bg-white);
}

.testimonial {
    background: var(--bg-light);
    padding: 32px 36px;
    border-radius: 8px;
    margin-bottom: 28px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

.benefits-showcase {
    padding: 100px 24px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.benefits-showcase h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.benefit-item {
    padding-left: 48px;
    border-left: 3px solid var(--secondary-color);
}

.benefit-item:nth-child(even) {
    padding-left: 0;
    padding-right: 48px;
    border-left: none;
    border-right: 3px solid var(--primary-color);
    text-align: right;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.cta-mid-page {
    padding: 80px 24px;
    background: var(--primary-color);
    color: white;
}

.cta-box {
    text-align: center;
}

.cta-box h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.service-categories {
    padding: 100px 24px;
    background: var(--bg-white);
}

.service-categories h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.category-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.category-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.category-card h4 {
    font-size: 20px;
    padding: 24px 24px 12px;
    color: var(--text-dark);
}

.category-card p {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.services-pricing {
    padding: 100px 24px;
    background: var(--bg-light);
}

.services-pricing h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

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

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

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a4d6a;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 60px 24px;
    background: #fff3e0;
    text-align: center;
}

.urgency-section h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.urgency-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.urgency-note {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-form-section {
    padding: 100px 24px;
    background: var(--bg-white);
}

.contact-form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.contact-form {
    background: var(--bg-light);
    padding: 48px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 125, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.final-reassurance {
    padding: 80px 24px;
    background: var(--bg-light);
    text-align: center;
}

.final-reassurance h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.final-reassurance p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-final {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 42px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #1a4d6a;
    transform: translateY(-2px);
    color: white;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 16px 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sticky-content span {
    color: white;
    font-size: 17px;
    font-weight: 500;
}

.btn-sticky {
    padding: 12px 32px;
    background: white;
    color: var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    color: var(--secondary-color);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 24px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: #229954;
}

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

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

.page-hero {
    background: var(--primary-color);
    color: white;
    padding: 80px 24px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.about-story {
    padding: 80px 24px;
    background: var(--bg-white);
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.values-section {
    padding: 80px 24px;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.team-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.team-description p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.achievements {
    padding: 80px 24px;
    background: var(--primary-color);
    color: white;
}

.achievements h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.achievements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

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

.achievement-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.achievement-item p {
    font-size: 16px;
    opacity: 0.9;
}

.certifications {
    padding: 80px 24px;
    background: var(--bg-white);
}

.certifications h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.certifications p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cert-list {
    margin-left: 24px;
}

.cert-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.cta-about {
    padding: 80px 24px;
    background: var(--bg-light);
    text-align: center;
}

.cta-about h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-light);
}

.services-detailed {
    padding: 80px 24px;
    background: var(--bg-white);
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 320px;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-content ul {
    margin: 20px 0 20px 24px;
}

.service-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

.service-image {
    flex: 1;
    min-width: 320px;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.additional-services {
    padding: 80px 24px;
    background: var(--bg-light);
}

.additional-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.additional-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.additional-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.additional-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.process-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-services {
    padding: 80px 24px;
    background: var(--bg-light);
    text-align: center;
}

.cta-services h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-light);
}

.services-intro {
    padding: 60px 24px;
    background: var(--bg-white);
}

.services-intro p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-info-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 36px 28px;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 15px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.map-section {
    padding: 80px 24px;
    background: var(--bg-light);
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.map-placeholder {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
}

.map-placeholder p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.faq-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-item {
    background: var(--bg-light);
    padding: 28px 32px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-section {
    padding: 100px 24px;
    background: var(--bg-white);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.thanks-message {
    text-align: left;
    background: var(--bg-light);
    padding: 36px 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-message p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-message ul {
    margin: 20px 0 20px 28px;
}

.thanks-message ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.selected-service-info {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.thanks-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a4d6a;
    color: white;
}

.btn-secondary {
    padding: 16px 36px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-additional {
    background: #fff3e0;
    padding: 32px;
    border-radius: 12px;
    margin-top: 40px;
}

.thanks-additional h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-additional p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-email {
    font-size: 20px;
    font-weight: 600;
    margin: 16px 0;
}

.small-text {
    font-size: 14px;
    color: var(--text-light);
}

.thanks-testimonials {
    padding: 60px 24px;
    background: var(--bg-light);
}

.thanks-testimonials h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 32px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.rodo-purpose,
.rodo-right {
    background: var(--bg-light);
    padding: 24px 28px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}

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

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

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

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

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

    .nav-toggle {
        display: flex;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content {
        gap: 32px;
    }

    .split-image,
    .split-text {
        min-width: 100%;
    }

    .benefit-item:nth-child(even) {
        padding-left: 48px;
        padding-right: 0;
        border-left: 3px solid var(--primary-color);
        border-right: none;
        text-align: left;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .sticky-content {
        justify-content: center;
        text-align: center;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cookies-table {
        font-size: 13px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 14px 28px;
        font-size: 16px;
    }

    .story-intro h2 {
        font-size: 28px;
    }

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

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

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