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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4af37;
    --text-dark: #1f1f1f;
    --text-light: #f8f8f8;
    --background-light: #ffffff;
    --background-gray: #f4f6f8;
    --background-dark: #2a3f4f;
    --border-color: #e0e4e8;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

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

.header {
    background-color: var(--background-light);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: lowercase;
}

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

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

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

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

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

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

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85), rgba(44, 95, 127, 0.75));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

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

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

.story-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.story-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 28px;
}

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

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.service-header h3 {
    font-size: 26px;
    color: var(--text-light);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-item > p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

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

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

.testimonials-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: var(--background-light);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
}

.form-section {
    padding: 120px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

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

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

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

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.badge {
    padding: 16px 32px;
    background-color: var(--background-light);
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.page-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

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

.page-subtitle {
    font-size: 22px;
    font-weight: 300;
}

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

.intro-large {
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
    color: var(--primary-color);
    font-weight: 300;
}

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

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

.values-detail h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--background-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.value-block p {
    font-size: 16px;
    line-height: 1.7;
}

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

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

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.team-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-feature {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.team-feature h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.team-feature p {
    font-size: 15px;
    line-height: 1.6;
}

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

.standards-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.standards-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.standard-item {
    padding: 28px;
    background-color: var(--background-gray);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.standard-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.standard-item p {
    font-size: 16px;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

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

.services-detailed {
    padding: 40px 20px;
    background-color: var(--background-light);
}

.service-detail {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--border-color);
}

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

.service-detail-header {
    margin-bottom: 32px;
}

.service-detail-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}

.service-detail-title h2 {
    font-size: 36px;
    color: var(--primary-color);
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-tagline {
    font-size: 18px;
    color: var(--secondary-color);
    font-style: italic;
}

.service-detail-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.service-description {
    flex: 1;
    min-width: 300px;
}

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

.service-description h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--primary-color);
}

.service-description ul {
    list-style: none;
    padding: 0;
}

.service-description ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-description ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

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

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

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

.custom-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.custom-content > p {
    font-size: 18px;
    margin-bottom: 20px;
}

.custom-list {
    text-align: left;
    display: inline-block;
    margin: 32px auto;
}

.custom-list li {
    font-size: 17px;
    padding: 8px 0;
}

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

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.contact-info > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    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: rgba(26, 58, 82, 0.9);
    color: var(--text-light);
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

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

.coverage-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.coverage-region {
    flex: 1;
    min-width: 260px;
    padding: 28px;
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.coverage-region h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.coverage-region p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.coverage-note {
    text-align: center;
    font-size: 16px;
    margin-top: 32px;
    color: var(--text-dark);
}

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

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

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

.faq-item {
    padding: 28px;
    background-color: var(--background-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

.thanks-hero {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.thanks-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
}

.thanks-details {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
}

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

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

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.next-step p {
    font-size: 15px;
}

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

.thanks-contact {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.thanks-contact p {
    font-size: 16px;
    margin-bottom: 8px;
}

.thanks-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-contact a:hover {
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

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

.cookie-table thead {
    background-color: var(--background-gray);
}

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

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

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

    .story-content h2,
    .values-detail h2,
    .team-section h2,
    .standards-section h2,
    .cta-content h2,
    .faq-section h2,
    .coverage-section h2,
    .custom-content h2 {
        font-size: 32px;
    }

    .intro-text {
        font-size: 18px;
    }

    .intro-large {
        font-size: 22px;
    }

    .service-header h3 {
        font-size: 22px;
    }

    .service-price {
        font-size: 24px;
    }

    .service-detail-title h2 {
        font-size: 28px;
    }

    .price-tag {
        font-size: 26px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

    .legal-page h1 {
        font-size: 36px;
    }

    .nav {
        width: 100%;
        gap: 20px;
    }

    .story-layout,
    .service-detail-content {
        flex-direction: column;
    }

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

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

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

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .value-card,
    .service-item,
    .testimonial {
        padding: 28px 20px;
    }

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

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