* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-section {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 700px;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s;
}

.cta-secondary:hover {
    background-color: #2980b9;
}

.intro-text-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.narrow-content {
    max-width: 800px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.split-image-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.benefits-grid-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.benefits-grid-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.testimonial-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

blockquote {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    padding: 0;
}

blockquote footer {
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.services-overview {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #667eea;
}

.service-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-item .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.select-service {
    background-color: #667eea;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service:hover {
    background-color: #5568d3;
}

.cta-inline-section {
    padding: 80px 20px;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-inline-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-inline-content p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.approach-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-block {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
}

.approach-block h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c3e50;
}

.approach-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.location-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.location-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.location-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background-color: #667eea;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #5568d3;
}

.final-cta-section {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.final-cta-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
}

.main-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-block {
    flex: 1 1 200px;
}

.footer-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-block p,
.footer-block ul {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.85;
}

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

.footer-block a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-block a:hover {
    opacity: 0.7;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.75;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
    padding: 12px 0;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.philosophy-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.philosophy-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.values-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-block {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
}

.value-block h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

.outcomes-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.outcomes-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.outcomes-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.cta-about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-about-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

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

.service-detail-content {
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.pricing-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #667eea;
}

.price-label {
    font-size: 15px;
    color: #5a6c7d;
    margin-right: 10px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.select-service-btn {
    background-color: #667eea;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service-btn:hover {
    background-color: #5568d3;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.enrolment-info {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.enrolment-content {
    max-width: 800px;
    margin: 0 auto;
}

.enrolment-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.enrolment-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.email-display {
    font-weight: 600;
    color: #667eea;
    user-select: all;
}

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

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

.details-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.details-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.location-map-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.map-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.map-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.contact-cta-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-content > p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.thanks-details h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-details ul {
    padding-left: 20px;
}

.thanks-details li {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.selected-service-display {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

.selected-service-display p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

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

.thanks-additional {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.additional-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.additional-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.text-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    transition: opacity 0.2s;
}

.text-link:hover {
    opacity: 0.8;
}

.legal-page {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #5a6c7d;
}

@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        align-items: center;
        padding: 100px 20px;
    }

    .hero-content {
        flex: 1;
        padding-right: 50px;
        padding-bottom: 0;
    }

    .hero-image {
        flex: 1;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .location-content {
        flex-direction: row;
        align-items: center;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

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

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

    .service-detail-content,
    .service-detail-image {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-actions {
        flex-shrink: 0;
    }

    .nav-links {
        gap: 40px;
    }
}

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

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .logo {
        font-size: 18px;
    }

    .legal-content {
        padding: 40px 30px;
    }

    .form-container {
        padding: 30px 20px;
    }
}