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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --dark-gray: #2d3436;
    --medium-gray: #636e72;
    --light-gray: #dfe6e9;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --border-color: #e1e8ed;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.4rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.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);
}

.main-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-top {
    background-color: var(--bg-light);
    padding: 0.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
}

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

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
}

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

.magazine-layout {
    min-height: calc(100vh - 400px);
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--dark-gray);
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero-overlay h1 {
    color: var(--white);
    font-size: 4rem;
    max-width: 900px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 700px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.editorial-columns {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.column-main {
    flex: 2;
    min-width: 0;
}

.column-sidebar {
    flex: 1;
    min-width: 280px;
}

.highlight-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.intro-editorial {
    background-color: var(--white);
}

.services-showcase {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
}

.services-magazine-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-feature-large {
    display: flex;
    gap: 3rem;
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-feature-large .service-image {
    flex: 1.2;
    background-color: var(--light-gray);
}

.service-feature-large .service-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.service-feature-large .service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-feature-small {
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-feature-small .service-image {
    background-color: var(--light-gray);
}

.service-feature-small .service-image img {
    width: 100%;
    height: 400px;
}

.service-feature-small .service-content {
    padding: 2rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.advanced-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-offset {
    max-width: 700px;
    margin-bottom: 3rem;
    margin-left: 10%;
}

.services-advanced {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card-inline {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem;
    background-color: var(--bg-light);
}

.service-card-inline:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: auto;
    max-width: 95%;
}

.service-card-inline:nth-child(odd) {
    margin-right: auto;
    max-width: 95%;
}

.service-card-inline img {
    width: 300px;
    height: 350px;
    flex-shrink: 0;
    background-color: var(--light-gray);
}

.card-content {
    flex: 1;
}

.testimonials-editorial {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.testimonial-block {
    margin: 2.5rem 0;
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    padding: 2rem;
    background-color: var(--white);
    border-left: 5px solid var(--secondary-color);
    margin: 0;
}

.testimonial-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--medium-gray);
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

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

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cta-large:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.main-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

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

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.about-page .page-hero-small {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.page-hero-small h1 {
    color: var(--white);
    font-size: 3rem;
}

.page-hero-small .lead {
    font-size: 1.4rem;
    margin-top: 1rem;
    opacity: 0.95;
}

.story-section {
    background-color: var(--white);
}

.story-section img {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.timeline-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 4px;
    position: sticky;
    top: 100px;
}

.timeline-box h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.timeline-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

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

.timeline-list li strong {
    color: var(--secondary-color);
}

.team-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: var(--white);
    padding: 2.5rem;
    border-top: 4px solid var(--primary-color);
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.values-section {
    background-color: var(--white);
    padding: 5rem 2rem;
}

.values-content {
    margin-top: 3rem;
}

.value-item {
    margin-bottom: 3rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

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

.services-page .services-detailed {
    background-color: var(--white);
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

.service-visual {
    flex: 1;
    background-color: var(--light-gray);
}

.service-visual img {
    width: 100%;
    height: 500px;
    border-radius: 4px;
}

.service-description {
    flex: 1;
}

.price-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.learning-points {
    list-style: none;
    margin: 1.5rem 0;
}

.learning-points li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
}

.learning-points li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.service-meta span {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-page .contact-info-section {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-block p {
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    position: relative;
}

.contact-visual img {
    width: 100%;
    height: 600px;
    border-radius: 4px;
    background-color: var(--light-gray);
}

.info-card {
    background-color: var(--white);
    padding: 2rem;
    margin-top: -100px;
    position: relative;
    margin-left: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-cta {
    background-color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta strong {
    color: var(--primary-color);
}

.thanks-page .thanks-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.thanks-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.thanks-content h1 {
    color: var(--primary-color);
    text-align: center;
}

.thanks-message {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    font-weight: 600;
}

.next-steps {
    margin: 2.5rem 0;
}

.next-steps ol {
    margin-left: 1.5rem;
    margin-top: 1.5rem;
}

.next-steps li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
}

.what-to-bring {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

.additional-info {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.tips-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tip-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-top: 3px solid var(--secondary-color);
}

.tip-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-reminder {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    text-align: center;
}

.legal-page {
    background-color: var(--white);
    min-height: calc(100vh - 400px);
}

.legal-intro {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-section h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

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

.cookies-table tbody tr:nth-child(even) {
    background-color: var(--bg-light);
}

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

    .column-sidebar {
        width: 100%;
    }

    .service-feature-large {
        flex-direction: column;
    }

    .service-feature-large .service-image img {
        min-height: 400px;
    }

    .service-card-inline {
        flex-direction: column;
    }

    .service-card-inline:nth-child(even) {
        flex-direction: column;
        max-width: 100%;
    }

    .service-card-inline:nth-child(odd) {
        max-width: 100%;
    }

    .service-card-inline img {
        width: 100%;
        height: 300px;
    }

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

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

    .info-card {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .container-fluid,
    .container-wide,
    .container-medium,
    .container-narrow {
        padding: 3rem 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .service-price {
        font-size: 1.5rem;
    }
}