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

:root {
    --primary: #2c3e50;
    --secondary: #8b4513;
    --accent: #c9a227;
    --light: #f8f5f0;
    --dark: #1a1a2e;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --fallback-hero: #3d5a73;
    --fallback-card: #d4c4a8;
    --fallback-section: #e8e0d5;
}

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

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

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

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

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

header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.ad-disclosure {
    text-align: center;
    opacity: 0.9;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.hero-editorial {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fallback-hero);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.7) 0%, rgba(44,62,80,0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

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

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

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

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

.editorial-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.editorial-intro .narrow-container {
    text-align: left;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 15px;
    padding-top: 8px;
    color: var(--secondary);
    font-weight: 700;
}

.editorial-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.editorial-intro p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text);
}

.inline-image {
    margin: 40px 0;
    position: relative;
    background-color: var(--fallback-section);
}

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

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    padding: 12px;
    font-style: italic;
    background-color: var(--light);
}

.castle-section {
    padding: 70px 0;
}

.castle-section:nth-child(even) {
    background-color: var(--white);
}

.castle-section:nth-child(odd) {
    background-color: var(--light);
}

.castle-article {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.castle-article.reverse {
    flex-direction: row-reverse;
}

.castle-text {
    flex: 1;
}

.castle-text h3 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.castle-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.castle-image {
    flex: 0 0 45%;
    background-color: var(--fallback-card);
    border-radius: 8px;
    overflow: hidden;
}

.castle-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.services-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.service-image {
    height: 200px;
    background-color: var(--fallback-card);
    overflow: hidden;
}

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

.service-content {
    padding: 25px;
}

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

.service-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background-color: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.testimonial-item:nth-child(even) {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 4px solid var(--accent);
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text);
}

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

.testimonial-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.form-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.form-wrapper {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    color: var(--text);
}

.form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #6d3610;
}

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

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
}

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

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

.footer-section ul a {
    color: var(--white);
    opacity: 0.85;
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    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 {
    font-size: 0.95rem;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.cookie-accept {
    background-color: var(--accent);
    color: var(--dark);
}

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

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

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

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-content {
    padding: 60px 0;
    background-color: var(--white);
}

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

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

.page-content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

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

.page-content ul li {
    margin-bottom: 10px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    flex: 1;
    padding: 30px;
    background-color: var(--light);
    border-radius: 8px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--white);
}

.thanks-box h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.selected-service {
    background-color: var(--light);
    padding: 15px 25px;
    border-radius: 8px;
    margin: 25px 0;
    font-weight: 600;
    color: var(--secondary);
}

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

.about-story p {
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.team-values {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: var(--light);
    border-radius: 12px;
}

.value-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.full-services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-full-item {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: var(--light);
    border-radius: 12px;
}

.service-full-item:nth-child(even) {
    flex-direction: row-reverse;
    background-color: var(--white);
    border: 1px solid #eee;
}

.service-full-image {
    flex: 0 0 300px;
    height: 220px;
    background-color: var(--fallback-card);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-full-content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.service-full-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-full-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 998;
    display: none;
}

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background-color: var(--accent);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .castle-article,
    .castle-article.reverse {
        flex-direction: column;
    }

    .castle-image {
        flex: 0 0 auto;
        width: 100%;
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 0 0 calc(50% - 25px);
    }

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .service-full-item,
    .service-full-item:nth-child(even) {
        flex-direction: column;
    }

    .service-full-image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }

    .contact-info-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }

    nav ul.show {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .footer-section {
        flex: 0 0 100%;
    }

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

    .testimonial-item,
    .testimonial-item:nth-child(even) {
        flex-direction: column;
    }

    .team-values {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }
}
