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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
    display: flex;
    min-height: 100vh;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f0e6d2;
    color: #6b5d4f;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    z-index: 1000;
    border-bottom: 1px solid #d4c5a9;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 40px;
    width: 240px;
    height: calc(100vh - 40px);
    background-color: #2d3e50;
    padding: 40px 20px;
    z-index: 900;
}

.nav-brand {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

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

.sidebar-nav ul li {
    margin-bottom: 20px;
}

.sidebar-nav ul li a {
    color: #c8d4e0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.sidebar-nav ul li a:hover {
    color: #ffffff;
}

.main-content {
    margin-left: 240px;
    margin-top: 40px;
    flex: 1;
    padding: 60px 40px 40px;
    max-width: 1400px;
}

.hero-offset {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 320px;
    padding-top: 40px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.cta-link {
    display: inline-block;
    color: #2d3e50;
    text-decoration: underline;
    font-size: 18px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #1a2530;
}

.hero-image-container {
    flex: 1.2;
    min-width: 400px;
    background-color: #e8e8e8;
}

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

.intro-section {
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

.narrow-column {
    max-width: 680px;
}

.narrow-column h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.narrow-column p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.split-content-section {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
    align-items: center;
    flex-wrap: wrap;
}

.content-half {
    flex: 1;
    min-width: 320px;
    background-color: #e5e5e5;
}

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

.text-content {
    background-color: transparent;
}

.text-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.text-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.atmospheric-section {
    position: relative;
    margin-bottom: 100px;
    background-color: #d8d8d8;
}

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

.overlay-text-box {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.92);
    padding: 50px 60px;
    max-width: 520px;
}

.overlay-text-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.overlay-text-box p {
    font-size: 17px;
    color: #3a3a3a;
}

.services-grid {
    margin-bottom: 100px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-align: center;
    font-weight: normal;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 15px;
    color: #4a4a4a;
    flex-grow: 1;
}

.service-card .price {
    font-size: 22px;
    font-weight: bold;
    margin: 15px 25px;
    color: #2d3e50;
}

.select-service {
    background-color: #2d3e50;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 25px 25px;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a2530;
}

.form-section {
    margin-bottom: 100px;
    background-color: #f4f4f4;
    padding: 60px 40px;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.form-container p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.selected-service-display {
    background-color: #e8f4e8;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-left: 4px solid #2d3e50;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.submit-btn {
    background-color: #2d3e50;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a2530;
}

.closing-section {
    margin-bottom: 80px;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.closing-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.closing-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.footer {
    background-color: #2d3e50;
    color: #c8d4e0;
    padding: 50px 40px 20px;
    margin-left: 240px;
    margin-top: auto;
}

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

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

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

.footer-section ul li a {
    color: #c8d4e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #4a5d70;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 1100;
    display: none;
}

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

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

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

.cookie-content a {
    color: #a8d0ff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d3e50;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1a2530;
}

.cookie-btn.reject {
    background-color: #6a6a6a;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4a4a4a;
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 40px;
    background-color: #f0f0f0;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.subtitle {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 350px;
    background-color: #e5e5e5;
}

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

.story-text {
    flex: 1;
    min-width: 350px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.expertise-section {
    margin-bottom: 100px;
}

.expertise-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: normal;
}

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

.expertise-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 30px;
    background-color: #f8f8f8;
    border-left: 4px solid #2d3e50;
}

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.expertise-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.approach-section {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-content {
    flex: 1;
    min-width: 350px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.approach-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.approach-image {
    flex: 1;
    min-width: 350px;
    background-color: #e5e5e5;
}

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

.values-section {
    margin-bottom: 100px;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: normal;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    padding: 35px 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.value-item p {
    font-size: 16px;
    color: #4a4a4a;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background-color: #f0f0f0;
    margin-bottom: 80px;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.cta-button {
    display: inline-block;
    background-color: #2d3e50;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 17px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a2530;
}

.cta-button.secondary {
    background-color: #6a6a6a;
    margin-left: 15px;
}

.cta-button.secondary:hover {
    background-color: #4a4a4a;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 40px;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.header-description {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-section {
    margin-bottom: 80px;
}

.service-detail-section.alternate {
    background-color: #f8f8f8;
    padding: 60px 40px;
    margin-left: -40px;
    margin-right: -40px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.service-image-large {
    flex: 1;
    min-width: 400px;
    background-color: #e5e5e5;
}

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

.service-detail-content {
    flex: 1;
    min-width: 350px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.service-detail-content ul {
    margin: 25px 0 25px 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #2d3e50;
    margin: 25px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.contact-header p {
    font-size: 18px;
    color: #4a4a4a;
}

.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
    justify-content: center;
}

.contact-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    max-width: 400px;
    padding: 40px 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.contact-card h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.contact-card p {
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.7;
}

.email-display {
    color: #2d3e50;
    font-weight: bold;
}

.notice {
    font-size: 14px;
    color: #6a6a6a;
    margin-top: 15px;
    font-style: italic;
}

.contact-details-section {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 40px;
    background-color: #f8f8f8;
}

.contact-details-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.contact-details-section p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.location-section {
    margin-bottom: 80px;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: normal;
}

.location-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.location-text {
    flex: 1;
    min-width: 350px;
}

.location-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.location-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.location-image {
    flex: 1;
    min-width: 350px;
    background-color: #e5e5e5;
}

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

.contact-cta {
    text-align: center;
    padding: 60px 40px;
    background-color: #f0f0f0;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.thanks-section {
    margin-bottom: 80px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #f8fcf8;
    border: 2px solid #d0e8d0;
}

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.thanks-details {
    background-color: #e8f4e8;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #2d3e50;
    display: none;
}

.thanks-details.active {
    display: block;
}

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

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.thanks-info p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #3a3a3a;
}

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

.additional-info {
    margin-bottom: 80px;
}

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
    font-weight: normal;
}

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

.resource-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.resource-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.resource-item p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.resource-item a {
    color: #2d3e50;
    text-decoration: underline;
    font-size: 16px;
    transition: color 0.3s ease;
}

.resource-item a:hover {
    color: #1a2530;
}

.legal-content {
    max-width: 900px;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: normal;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c2c2c;
    font-weight: normal;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #3a3a3a;
    line-height: 1.7;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
}

.legal-section ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.legal-section a {
    color: #2d3e50;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1a2530;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .footer {
        margin-left: 200px;
    }
}

@media (max-width: 768px) {
    .sidebar-nav {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        padding: 20px;
    }

    .main-content {
        margin-left: 0;
        padding: 40px 20px;
    }

    .footer {
        margin-left: 0;
    }

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

    .overlay-text-box {
        position: static;
        transform: none;
        margin: 20px;
    }

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