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

:root {
    --primary-color: #0A5C7A;
    --secondary-color: #2E8BA6;
    --accent-color: #F4A261;
    --dark-color: #1A1A1A;
    --light-color: #F8F9FA;
    --text-color: #333333;
    --border-color: #E0E0E0;
    --success-color: #2E7D32;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

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

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    font-size: 16px;
}

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

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

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

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 40px;
}

.hero-image {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    min-height: 600px;
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--white);
}

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.intro-content h2 {
    font-size: 42px;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.value-cards {
    padding: 100px 0;
    background-color: var(--light-color);
}

.value-cards h2 {
    text-align: center;
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-icon {
    margin-bottom: 25px;
}

.card-icon img {
    width: 60px;
    height: 60px;
}

.value-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.experience-split {
    display: flex;
    min-height: 650px;
}

.exp-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--primary-color);
    color: var(--white);
}

.exp-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.exp-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.exp-content .cta-secondary {
    color: var(--white);
    border-color: var(--white);
    margin-top: 20px;
    align-self: flex-start;
}

.exp-content .cta-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.exp-image {
    flex: 1;
    overflow: hidden;
}

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

.services-showcase {
    padding: 100px 0;
    background-color: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-intro h2 {
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-visual {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.service-meta .duration,
.service-meta .capacity {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 8px 16px;
    background-color: rgba(46, 139, 166, 0.1);
    border-radius: 4px;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

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

.select-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    color: var(--white);
}

.testimonial-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.95;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: var(--accent-color);
    font-weight: 600;
}

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

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

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

.booking-intro h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
}

.booking-form {
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

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

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

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

.form-group input[readonly] {
    background-color: var(--light-color);
    cursor: not-allowed;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta .cta-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.final-cta .cta-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

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

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

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

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

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

.sticky-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.page-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.about-story {
    padding: 100px 0;
}

.story-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.team-section {
    padding: 100px 0;
    background-color: var(--white);
}

.team-section h2 {
    text-align: center;
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
}

.team-members {
    display: flex;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

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

.team-member h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.team-member .role {
    display: block;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.cta-about {
    padding: 100px 0;
    background-color: var(--light-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

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

.service-image-large {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    max-height: 600px;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.service-specs .spec {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 8px 16px;
    background-color: rgba(46, 139, 166, 0.1);
    border-radius: 4px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-highlights {
    margin: 30px 0;
}

.service-highlights h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.service-highlights ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

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

.service-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.price-large {
    font-size: 38px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-main {
    padding: 80px 0 100px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

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

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-color);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    padding: 100px 0;
    background-color: var(--light-color);
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 40px;
}

.thanks-section {
    padding: 180px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    padding: 0 30px;
}

.thanks-icon {
    margin-bottom: 40px;
}

.thanks-container h1 {
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
}

.service-confirmation strong {
    color: var(--dark-color);
}

.service-confirmation span {
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    text-align: left;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 12px;
}

.next-steps a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.next-steps a:hover {
    text-decoration: underline;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

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

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

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

.legal-page {
    padding: 180px 0 80px;
    min-height: 100vh;
}

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

.legal-container h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 10px;
}

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

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

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

.cookie-table th {
    font-weight: 700;
    color: var(--dark-color);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-color);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .experience-split {
        flex-direction: column;
    }

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

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

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

    .story-layout {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .testimonials {
        flex-direction: column;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text p {
        font-size: 18px;
    }

    .intro-content h2,
    .exp-content h2 {
        font-size: 32px;
    }

    .value-cards h2,
    .section-intro h2,
    .testimonial-section h2 {
        font-size: 34px;
    }

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

    .form-row {
        flex-direction: column;
    }

    .booking-form {
        padding: 30px;
    }

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

    .cookie-actions {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .service-footer,
    .service-action {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

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

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

    .hero-content,
    .intro-content,
    .exp-content {
        padding: 50px 30px;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .legal-container h1 {
        font-size: 32px;
    }
}