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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0a4a6e;
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #0a4a6e;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.hero-magazine {
    background-color: #ffffff;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #0a4a6e;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image-column {
    flex: 1;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #0a4a6e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #083d5a;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #0a4a6e;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0a4a6e;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #0a4a6e;
    color: #ffffff;
}

.intro-magazine {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.intro-main-column {
    flex: 2;
}

.intro-main-column h2 {
    font-size: 36px;
    color: #0a4a6e;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-main-column p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.intro-sidebar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-box {
    background-color: #f5f8fa;
    padding: 30px;
    border-left: 4px solid #0a4a6e;
}

.highlight-box h3 {
    font-size: 20px;
    color: #0a4a6e;
    margin-bottom: 12px;
}

.highlight-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.intro-sidebar-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.experience-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.experience-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-image-left {
    flex: 1;
}

.experience-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.experience-text-right {
    flex: 1;
}

.experience-text-right h2 {
    font-size: 36px;
    color: #0a4a6e;
    margin-bottom: 24px;
}

.experience-list {
    list-style: none;
    margin-bottom: 32px;
}

.experience-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: #444;
}

.experience-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0a4a6e;
    font-weight: 700;
}

.services-preview {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.services-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header-center h2 {
    font-size: 42px;
    color: #0a4a6e;
    margin-bottom: 16px;
}

.services-intro {
    font-size: 19px;
    color: #666;
}

.services-magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-large {
    grid-column: span 2;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-card-large .service-image {
    flex: 1;
    background-color: #e8f1f5;
}

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

.service-card-large .service-content {
    flex: 1;
    padding: 40px;
}

.service-card-medium {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-card-medium .service-image {
    height: 220px;
    background-color: #e8f1f5;
}

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

.service-card-medium .service-content {
    padding: 30px;
}

.service-card-small {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-content h3 {
    font-size: 24px;
    color: #0a4a6e;
    margin-bottom: 16px;
}

.service-card-small h3 {
    font-size: 22px;
    color: #0a4a6e;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-small p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #0a4a6e;
}

.duration {
    font-size: 14px;
    color: #888;
}

.cta-center-block {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.cta-text {
    font-size: 20px;
    color: #333;
    margin-bottom: 24px;
}

.testimonial-section {
    background-color: #0a4a6e;
    padding: 80px 40px;
    color: #ffffff;
}

.testimonial-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-main {
    margin-bottom: 40px;
}

.testimonial-main p {
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-main footer {
    font-size: 16px;
    opacity: 0.9;
}

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

.testimonial-small {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 4px;
}

.testimonial-small p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-small footer {
    font-size: 14px;
    opacity: 0.8;
}

.about-preview {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text-wide {
    flex: 2;
}

.about-text-wide h2 {
    font-size: 36px;
    color: #0a4a6e;
    margin-bottom: 24px;
}

.about-text-wide p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-arrow {
    display: inline-block;
    color: #0a4a6e;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.about-image-narrow {
    flex: 1;
}

.about-image-narrow img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.booking-section {
    background-color: #f5f8fa;
    padding: 80px 40px;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 48px;
}

.booking-intro h2 {
    font-size: 38px;
    color: #0a4a6e;
    margin-bottom: 16px;
}

.booking-intro p {
    font-size: 18px;
    color: #666;
}

.booking-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    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: #0a4a6e;
}

.form-privacy {
    margin-bottom: 32px;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.form-privacy input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
}

.form-privacy a {
    color: #0a4a6e;
}

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: #0a4a6e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #083d5a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 30px;
}

.footer-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.disclaimer-footer {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    max-width: 900px;
    margin: 16px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #0a4a6e;
    padding: 24px 40px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #333;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

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

.cookie-accept {
    background-color: #0a4a6e;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #083d5a;
}

.cookie-reject {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-reject:hover {
    background-color: #d0d0d0;
}

.cookie-actions a {
    color: #0a4a6e;
    font-size: 14px;
}

.page-hero-small {
    background-color: #0a4a6e;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-hero-small p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-main {
    flex: 2;
}

.story-main h2 {
    font-size: 36px;
    color: #0a4a6e;
    margin-bottom: 24px;
}

.story-main p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    background-color: #f5f8fa;
    padding: 24px;
    border-radius: 4px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #0a4a6e;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
}

.story-sidebar img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.team-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.team-section h2 {
    font-size: 38px;
    color: #0a4a6e;
    text-align: center;
    margin-bottom: 48px;
}

.approach-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.approach-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.approach-card h3 {
    font-size: 24px;
    color: #0a4a6e;
    margin-bottom: 16px;
}

.approach-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.expertise-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.expertise-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-content img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 36px;
    color: #0a4a6e;
    margin-bottom: 24px;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.expertise-list li:last-child {
    border-bottom: none;
}

.expertise-list strong {
    color: #0a4a6e;
}

.mission-section {
    padding: 80px 40px;
    background-color: #f5f8fa;
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    border-left: 4px solid #0a4a6e;
}

.mission-box h2 {
    font-size: 36px;
    color: #0a4a6e;
    margin-bottom: 24px;
}

.mission-box p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partners-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.partners-section h2 {
    font-size: 38px;
    color: #0a4a6e;
    text-align: center;
    margin-bottom: 16px;
}

.partners-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.partner-item {
    background-color: #f5f8fa;
    padding: 24px;
    text-align: center;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-item {
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-content {
    display: flex;
    gap: 0;
}

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

.service-detail-text {
    flex: 1;
    padding: 50px;
}

.service-detail-text h2 {
    font-size: 32px;
    color: #0a4a6e;
    margin-bottom: 16px;
}

.service-price-badge {
    display: inline-block;
    background-color: #0a4a6e;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-duration {
    font-size: 16px;
    color: #888;
    margin-bottom: 24px;
}

.service-detail-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-text h3 {
    font-size: 22px;
    color: #0a4a6e;
    margin-top: 28px;
    margin-bottom: 16px;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-text li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0a4a6e;
    font-weight: 700;
}

.cta-service {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 28px;
    background-color: #0a4a6e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-service:hover {
    background-color: #083d5a;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f1f5;
}

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

.booking-info {
    background-color: #f5f8fa;
    padding: 80px 40px;
}

.booking-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info-content h2 {
    font-size: 38px;
    color: #0a4a6e;
    text-align: center;
    margin-bottom: 48px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 20px;
    color: #0a4a6e;
    margin-bottom: 12px;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    font-size: 36px;
    color: #0a4a6e;
    margin-bottom: 32px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #0a4a6e;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.map-caption {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.directions-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.directions-section h2 {
    font-size: 36px;
    color: #0a4a6e;
    text-align: center;
    margin-bottom: 48px;
}

.directions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.direction-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 24px;
    color: #0a4a6e;
    margin-bottom: 16px;
}

.direction-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.faq-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    color: #0a4a6e;
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: #f5f8fa;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    color: #0a4a6e;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f5f8fa;
    min-height: 600px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #0a4a6e;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 36px;
    color: #0a4a6e;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #f5f8fa;
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #444;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    color: #0a4a6e;
    margin-bottom: 16px;
}

.next-steps {
    text-align: left;
    margin: 0 auto 32px;
    max-width: 600px;
    padding-left: 20px;
}

.next-steps li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.thanks-contact {
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    color: #666;
}

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

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    color: #0a4a6e;
    margin-bottom: 12px;
}

.legal-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: #0a4a6e;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    color: #0a4a6e;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0 16px 32px;
}

.legal-container li {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-container a {
    color: #0a4a6e;
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f8fa;
    color: #0a4a6e;
    font-weight: 600;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-content-split,
    .magazine-grid,
    .experience-content,
    .about-asymmetric,
    .contact-layout,
    .expertise-content,
    .service-detail-content {
        flex-direction: column;
    }

    .approach-layout,
    .testimonial-grid {
        flex-direction: column;
    }

    .services-magazine-layout {
        grid-template-columns: 1fr;
    }

    .service-card-large {
        grid-column: span 1;
        flex-direction: column;
    }

    .partners-grid,
    .info-grid,
    .directions-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }

    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .hero-magazine,
    .intro-magazine,
    .services-preview,
    .about-preview,
    .booking-section,
    .testimonial-section,
    .experience-section {
        padding: 60px 20px;
    }

    .services-header-center h2 {
        font-size: 32px;
    }

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

    .thanks-container {
        padding: 40px 20px;
    }

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