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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Ad Notice */
.ad-notice {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -23px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
}

/* Hero Magazine Style */
.hero-magazine {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-col {
    flex: 1;
    max-width: 600px;
}

.hero-text-col h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.hero-image-col {
    flex: 1;
    background-color: #f8f8f8;
}

.hero-image-col img {
    width: 100%;
    height: 500px;
}

/* Page Hero */
.page-hero {
    background-color: #f9f9f9;
    padding: 80px 40px 60px;
    text-align: center;
}

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

.hero-content-centered h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.lead {
    font-size: 1.3rem;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Content Sections */
.intro-section,
.mission-section,
.about-intro,
.values-section,
.expertise-section,
.contact-note,
.location-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.content-magazine-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-narrow h2,
.content-magazine-wide h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.2;
}

.content-narrow p,
.content-magazine-wide p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

/* Text Image Layouts */
.text-image-split-reverse {
    display: flex;
    gap: 70px;
    align-items: center;
}

.text-column {
    flex: 1;
}

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

.image-column img {
    width: 100%;
    height: 450px;
}

.text-column h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.text-column p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #3a3a3a;
}

/* Mission Layout */
.mission-layout {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-direction: row-reverse;
}

.mission-image {
    flex: 1;
    background-color: #f8f8f8;
}

.mission-image img {
    width: 100%;
    height: 480px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.mission-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

/* Values Grid */
.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    flex: 1;
    padding: 30px;
    background-color: #f9f9f9;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Expertise Columns */
.expertise-columns {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.expertise-col {
    flex: 1;
}

.expertise-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.expertise-col ul {
    list-style: disc;
    padding-left: 20px;
}

.expertise-col li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

/* Services Preview */
.services-preview {
    padding: 80px 40px;
    background-color: #fafafa;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 50px;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.services-grid-magazine {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-mag {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.service-image {
    background-color: #e8e8e8;
    height: 280px;
}

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

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.service-detail-item {
    padding: 80px 0;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-detail-layout {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

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

.service-text-block {
    flex: 1.2;
}

.service-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.service-features {
    margin: 35px 0;
    padding: 25px;
    background-color: #f9f9f9;
}

.service-features h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-features ul {
    list-style: disc;
    padding-left: 20px;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

.service-image-block img {
    width: 100%;
    height: 450px;
}

.pricing-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
    padding: 25px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
}

.price-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Contact */
.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-layout {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.contact-image-block img {
    width: 100%;
    height: 450px;
}

.contact-note,
.location-section {
    background-color: #fafafa;
}

.contact-note a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-note a:hover {
    opacity: 0.7;
}

/* Form Section */
.form-section {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
}

/* Buttons and CTAs */
.cta-inline {
    display: inline-block;
    padding: 14px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.cta-inline:hover {
    background-color: #333333;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

.btn-submit {
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.cta-section-about,
.cta-section-services {
    padding: 80px 40px;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-content-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.cta-section-about .btn-primary,
.cta-section-services .btn-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cta-section-about .btn-primary:hover,
.cta-section-services .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 40px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.service-confirmation {
    font-size: 1.05rem;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    color: #2a2a2a;
    font-weight: 500;
}

.thanks-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 35px;
}

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

/* Legal Pages */
.legal-page {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #666;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #4a4a4a;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #c0c0c0;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.95rem;
    color: #c0c0c0;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem !important;
    line-height: 1.6;
    color: #888 !important;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
}

.btn-cookie.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-split,
    .mission-layout,
    .text-image-split-reverse,
    .contact-layout,
    .service-detail-layout {
        flex-direction: column;
    }

    .services-grid-magazine,
    .values-grid,
    .expertise-columns,
    .footer-content {
        flex-direction: column;
    }

    .hero-text-col h1,
    .hero-content-centered h1 {
        font-size: 2.2rem;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

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

    .hero-text-col h1 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}