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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0e6d2;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0d0b0;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 2px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #8b4513;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b4513;
}

.hero-magazine {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-intro {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background-color: #8b4513;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #6d3410;
}

.hero-image-right {
    flex: 1;
    background-color: #f5f5f5;
}

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

.intro-columns {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
}

.column-main {
    flex: 2;
}

.column-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.column-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.column-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: #fff;
    padding: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #555;
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

.services-grid {
    background-color: #ffffff;
    padding: 80px 40px;
    margin: 80px 0;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.service-cards-magazine {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    background-color: #f0f0f0;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #8b4513;
    margin-bottom: 20px;
}

.select-service {
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #6d3410;
}

.testimonials-magazine {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
}

.testimonial-layout {
    display: flex;
    gap: 60px;
}

.testimonial-block {
    flex: 1;
    padding: 40px;
    background-color: #f8f4ef;
    border-left: 4px solid #8b4513;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c2c2c;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.philosophy-section {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.link-inline {
    color: #8b4513;
    text-decoration: underline;
    font-size: 16px;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #6d3410;
}

.booking-section {
    background-color: #ffffff;
    padding: 80px 40px;
    margin: 80px 0;
}

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

.booking-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.booking-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.booking-form {
    background-color: #fafafa;
    padding: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Georgia', serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #666;
}

.submit-button {
    width: 100%;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #6d3410;
}

.disclaimer-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.disclaimer-content {
    background-color: #f8f8f8;
    padding: 32px;
    border-left: 4px solid #999;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e5e5e5;
    padding: 24px;
    display: none;
    z-index: 200;
}

.cookie-banner.active {
    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;
    font-size: 15px;
    color: #2c2c2c;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #8b4513;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #6d3410;
}

.cookie-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.cookie-reject:hover {
    background-color: #d0d0d0;
}

.page-header {
    background-color: #8b4513;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

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

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

.page-content {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: #2c2c2c;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    color: #444;
}

.page-content li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.about-intro {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.team-section {
    background-color: #ffffff;
    padding: 80px 40px;
    margin: 60px 0;
}

.team-content {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-details {
    background-color: #fafafa;
    padding: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-top: 24px;
}

.contact-details p {
    margin-bottom: 16px;
    font-size: 17px;
    color: #2c2c2c;
}

.contact-details strong {
    color: #1a1a1a;
}

.services-list {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-item-image {
    flex: 0 0 300px;
    background-color: #f5f5f5;
}

.service-item-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-item-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #444;
}

.service-item-price {
    font-size: 32px;
    font-weight: bold;
    color: #8b4513;
    margin-top: 20px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.thanks-container .selected-info {
    background-color: #f8f4ef;
    padding: 24px;
    margin: 32px 0;
    border-radius: 4px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 40px;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #6d3410;
}

@media (max-width: 968px) {
    .hero-magazine,
    .intro-columns,
    .philosophy-section,
    .about-intro,
    .contact-container {
        flex-direction: column;
    }

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

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-item-image {
        flex: 1 1 100%;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
}
