:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e85d35;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #fafafa;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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

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

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

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

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

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

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

.hidden {
    display: none !important;
}

.header {
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
    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;
    min-height: 70px;
}

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

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.cta-primary:hover {
    background-color: #d14d25;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.cta-secondary:hover {
    background-color: #234a5e;
    transform: translateY(-2px);
}

.intro-statement {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px;
}

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

.statement-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.statement-card p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.card-grid {
    display: flex;
    gap: 40px;
}

.story-card {
    flex: 1;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.problem-amplify {
    background-color: #f9f5f2;
    padding: 80px 20px;
}

.amplify-card {
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.amplify-card h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.amplify-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-box {
    background-color: var(--accent-color);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.insight-box p {
    color: var(--text-dark);
    margin: 0;
}

.transformation-cards {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: -30px;
    margin-bottom: 50px;
}

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

.transform-card {
    flex: 1;
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.transform-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.transform-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-cards {
    background-color: #f9f5f2;
    padding: 80px 20px;
}

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

.testimonial-card {
    flex: 1;
    background-color: var(--bg-card);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.service-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-service, .btn-service-detail {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-section {
    background-color: #fff8f0;
    padding: 60px 20px;
}

.urgency-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    text-align: center;
}

.urgency-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.urgency-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.urgency-note {
    font-weight: 600;
    color: var(--secondary-color);
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-card > p {
    color: var(--text-light);
    margin-bottom: 35px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    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 {
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    background-color: var(--primary-color);
    padding: 80px 20px;
}

.final-card {
    text-align: center;
    color: white;
}

.final-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-card p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

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

.sticky-content span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 30px;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #cccccc;
    line-height: 1.7;
}

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

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

.footer-col a {
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

.cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
}

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

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

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

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

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

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

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 80px 20px;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.philosophy-cards {
    background-color: #f9f5f2;
    padding: 80px 20px;
}

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

.philosophy-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-card);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.team-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.team-role {
    padding: 0 25px 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.team-card > p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.7;
}

.space-section {
    background-color: #f9f5f2;
    padding: 80px 20px;
}

.space-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.space-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.feature-card {
    flex: 0 0 calc(50% - 12.5px);
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.values-card {
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.values-card h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.values-card p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.service-detailed-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-image-large {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-details {
    margin-bottom: 25px;
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-description h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description ul {
    list-style-position: inside;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 2;
}

.includes {
    font-size: 0.95rem;
    padding: 15px;
    background-color: #f9f5f2;
    border-radius: 8px;
    margin-bottom: 25px;
}

.services-intro {
    padding: 60px 20px;
}

.intro-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.intro-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.booking-section {
    background-color: #f9f5f2;
    padding: 80px 20px;
}

.booking-cta-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.booking-cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.booking-cta-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.faq-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-main {
    padding: 80px 20px;
}

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

.contact-info-card {
    flex: 1;
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map-card {
    flex: 1;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
}

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

.directions-info {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.directions-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.directions-info p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.visit-info {
    background-color: #f9f5f2;
    padding: 80px 20px;
}

.visit-card {
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.visit-card h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--text-dark);
    text-align: center;
}

.visit-grid {
    display: flex;
    gap: 35px;
}

.visit-point {
    flex: 1;
}

.visit-point h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.visit-point p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-contact {
    padding: 80px 20px;
}

.cta-card-center {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-card-center h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-card-center p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-hero {
    padding: 80px 20px;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-content {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-content h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--primary-color);
    text-align: center;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thanks-step {
    display: flex;
    gap: 25px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #f9f5f2;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-note {
    background-color: #fff8f0;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--accent-color);
}

.thanks-note p {
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.btn-primary, .btn-secondary {
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #d14d25;
}

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

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

.thanks-extra {
    background-color: #f9f5f2;
    padding: 60px 20px;
}

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

.extra-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.extra-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page {
    padding: 80px 20px;
}

.legal-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 50px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-content h5 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

.cookie-table tbody tr:nth-child(even) {
    background-color: #f9f5f2;
}

@media (max-width: 1024px) {
    .hero-card {
        flex-direction: column;
    }

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

    .card-grid-three {
        flex-direction: column;
    }

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

    .service-card {
        flex: 0 0 100%;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-card);
        width: 100%;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title,
    .section-title-center {
        font-size: 2rem;
    }

    .philosophy-card,
    .team-card,
    .feature-card,
    .faq-card {
        flex: 0 0 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 35px;
    }

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

    .thanks-card {
        padding: 40px 25px;
    }

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

    .form-card {
        padding: 35px 25px;
    }

    .sticky-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

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

    .page-hero h1 {
        font-size: 2rem;
    }

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

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}