/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c3e50;
}

/* Container Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section - Minimal Premium */
.hero-minimal {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    padding: 100px 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    color: #6c757d;
    margin-bottom: 50px;
}

.hero-image {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: #f5f5f5;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

/* Intro Statement */
.intro-statement {
    padding: 120px 0;
    background-color: #fafafa;
}

.intro-statement h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-statement p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

/* Services Showcase */
.services-showcase {
    padding: 120px 0;
}

.services-showcase h2 {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 34px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

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

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0 30px 25px;
}

.service-card .price {
    font-size: 32px;
    font-weight: 300;
    color: #2c3e50;
    margin: 0 30px 25px;
}

.select-service {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background-color: #fafafa;
}

.contact-form-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.contact-form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border: 1px solid #e8e8e8;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Trust Statement */
.trust-statement {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.trust-statement p {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #b8c5d6;
}

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

.footer-section a {
    color: #b8c5d6;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3d5266;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.footer-bottom p {
    font-size: 13px;
    color: #b8c5d6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c3e50;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 30px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e50;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    background-color: #fafafa;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 300;
    color: #1a1a1a;
}

.page-header p {
    font-size: 20px;
    color: #6c757d;
    margin-top: 20px;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-content img {
    width: 100%;
    margin-bottom: 50px;
    background-color: #f0f0f0;
}

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

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.value-item h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
}

.approach-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

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

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-detail-content .price-tag {
    font-size: 36px;
    font-weight: 300;
    color: #2c3e50;
    margin: 30px 0 25px;
}

.service-detail-content .select-service {
    width: auto;
    margin: 0;
    padding: 16px 45px;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background-color: #fafafa;
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 280px;
}

.contact-info-block h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

/* Contact Details */
.contact-details {
    padding: 80px 0;
    background-color: #fafafa;
}

.contact-details h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-details p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

/* Thanks Section */
.thanks-section {
    padding: 150px 0;
    text-align: center;
}

.thanks-section h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-section .cta-primary {
    margin-top: 40px;
}

/* Legal Page */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    list-style-type: disc;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-page em {
    font-size: 14px;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-detail-item {
        flex-direction: column;
    }

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

    .service-detail-content,
    .service-detail-image {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .nav-links {
        gap: 20px;
    }

    .services-grid {
        gap: 30px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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