:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2ecc71;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1e2a35;
    --border-color: #dfe6e9;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--text-light);
}

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

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

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

.main-nav {
    background: var(--text-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    border-bottom-color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: var(--bg-light);
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-visual {
    flex: 1;
    min-height: 400px;
}

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

.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-card,
.btn-submit,
.btn-large {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

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

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

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

.btn-tertiary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-large {
    font-size: 18px;
    padding: 18px 40px;
}

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

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

.split-visual,
.split-content {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.split-content {
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.split-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

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

.dark-bg h2,
.dark-bg h3,
.dark-bg h4 {
    color: var(--text-light);
}

.dark-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.dark-section h2,
.dark-section h3 {
    color: var(--text-light);
}

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-card h3 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-card p {
    font-size: 16px;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.process-steps {
    margin-top: 30px;
}

.step {
    margin-bottom: 25px;
}

.step-number {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
}

.step h4 {
    display: inline;
    font-size: 20px;
    margin-left: 10px;
}

.step p {
    margin-top: 10px;
    padding-left: 65px;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--text-light);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.service-card p {
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-card {
    width: 100%;
    background: var(--primary-color);
    color: var(--text-light);
}

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

.services-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.secondary-service {
    flex: 1;
    min-width: 250px;
    background: var(--text-light);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.secondary-service h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.secondary-service p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price-small {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--bg-dark);
    color: var(--text-light);
}

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

.testimonial-card blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-size: 16px;
    font-style: normal;
    color: var(--secondary-color);
}

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

.cta-content {
    text-align: center;
    margin-bottom: 50px;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

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

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

.contact-form {
    background: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 15px;
    font-size: 18px;
}

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

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

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

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

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

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--secondary-color);
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

.sticky-btn {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d35400;
    transform: scale(1.05);
}

.page-header {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.included-list,
.specs-list,
.facility-list {
    list-style: none;
    margin: 20px 0;
}

.included-list li,
.specs-list li,
.facility-list li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.included-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.specs-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.facility-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 15px 0 25px;
}

.price-period {
    font-size: 20px;
    color: #666;
}

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

.comparison-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 15px;
    border-right: 1px solid var(--border-color);
    text-align: center;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
}

.cta-section-alt {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section-alt p {
    font-size: 18px;
    margin-bottom: 30px;
}

.values-section {
    padding: 80px 20px;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

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

.value-card p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 16px;
    color: #555;
}

.certifications-section {
    padding: 80px 20px;
}

.certifications-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.cert-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.cert-item h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.cert-item p {
    font-size: 14px;
}

.partner-text {
    text-align: center;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.testimonials-grid .testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonials-grid .testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-grid .testimonial-card cite {
    font-size: 14px;
    color: var(--primary-color);
}

.contact-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 30px;
    display: flex;
    align-items: center;
}

.contact-info-content h2,
.contact-info-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-info-content h2:first-child {
    margin-top: 0;
}

.contact-info-content .address {
    font-size: 16px;
    line-height: 1.8;
}

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

.sub-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.hours {
    margin-top: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-row:last-child {
    border-bottom: none;
}

.emergency-contact {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.emergency-contact h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-visual-side {
    flex: 1;
}

.contact-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

.directions-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.direction-card {
    flex: 1;
    min-width: 250px;
    background: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.faq-section {
    padding: 80px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

.map-section {
    padding: 60px 20px;
    background: var(--text-light);
}

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

.map-placeholder {
    background: var(--bg-light);
    padding: 100px 20px;
    text-align: center;
    border-radius: 10px;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 18px;
    color: #555;
}

.map-note {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

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

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

.checkmark-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.selected-service {
    background: var(--text-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.selected-service h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-selected {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background: var(--text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
}

.step-num {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 14px;
    color: #666;
}

.thanks-cta {
    margin: 50px 0;
}

.thanks-cta h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.thanks-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 40px;
    padding: 20px;
    background: var(--text-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-reminder a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-section {
    padding: 60px 20px;
    background: var(--text-light);
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

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

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

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

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--text-light);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--bg-light);
}

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

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

.note {
    background: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.cookie-preferences {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.cookie-preferences p {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-menu {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

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

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

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

    .contact-info-side,
    .contact-visual-side {
        flex: 1;
    }
}

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

    .split-content h2 {
        font-size: 28px;
    }

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

    .price-large {
        font-size: 32px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-cell {
        padding: 10px 5px;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}