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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.4em;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-disclosure {
    font-size: 0.75em;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border: 1px solid #34495e;
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.5em;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25em;
    color: #5a6c7d;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 85vh;
}

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 42px;
    text-decoration: none;
    font-size: 1.05em;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 16px 42px;
    text-decoration: none;
    font-size: 1.05em;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.split-content {
    display: flex;
    min-height: 600px;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-text h2 {
    font-size: 2.5em;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-text p {
    font-size: 1.1em;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 3em;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2em;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

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

.service-card p {
    font-size: 1em;
    color: #5a6c7d;
    margin: 0 25px 20px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 25px 30px;
}

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

.form-section {
    background-color: #ecf0f1;
    padding: 100px 40px;
}

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

.form-container h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.form-container > p {
    font-size: 1.15em;
    color: #5a6c7d;
    margin-bottom: 50px;
    text-align: center;
}

.main-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.main-footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 70px 40px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95em;
    color: #95a5a6;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #2c2c2c;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.85em;
    color: #95a5a6;
    line-height: 1.7;
}

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

.footer-bottom p {
    font-size: 0.9em;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

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

.page-header h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    font-size: 1.3em;
    color: #ecf0f1;
}

.service-detail {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05em;
    color: #5a6c7d;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2em;
}

.pricing-display {
    margin-top: 35px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1.1em;
    color: #5a6c7d;
    font-weight: 600;
}

.price-amount {
    font-size: 2.2em;
    color: #2c3e50;
    font-weight: 700;
}

.cta-full {
    background-color: #34495e;
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.cta-full h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-full p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 80px 70px;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-block {
    margin-bottom: 45px;
}

.info-block h3 {
    font-size: 1.3em;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.info-block p {
    font-size: 1.05em;
    color: #5a6c7d;
    line-height: 1.8;
}

.email-text {
    color: #5a6c7d;
    font-weight: 500;
}

.contact-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.directions-section {
    padding: 100px 70px;
    background-color: #ffffff;
}

.directions-section h2 {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.directions-split {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.directions-text {
    flex: 1.2;
}

.directions-text h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c3e50;
    font-weight: 600;
}

.directions-text h3:first-child {
    margin-top: 0;
}

.directions-text p {
    font-size: 1.05em;
    color: #5a6c7d;
    line-height: 1.8;
}

.directions-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.expectations-section {
    padding: 80px 70px;
    background-color: #ecf0f1;
    text-align: center;
}

.expectations-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.expectations-section p {
    font-size: 1.15em;
    color: #5a6c7d;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 25px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5em;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-content > p {
    font-size: 1.2em;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-service {
    margin: 35px 0;
    padding: 20px;
    background-color: #e8f4f8;
    border-radius: 6px;
    font-size: 1.1em;
    color: #2c3e50;
    font-weight: 600;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.1em;
    color: #5a6c7d;
    line-height: 1.7;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.3em;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
}

.update-date {
    font-size: 0.95em;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 2em;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05em;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 25px;
}

.legal-content ul li {
    font-size: 1.05em;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.philosophy-section {
    padding: 100px 70px;
    background-color: #f8f9fa;
}

.philosophy-content h2 {
    font-size: 3em;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.philosophy-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.philosophy-item p {
    font-size: 1.05em;
    color: #5a6c7d;
    line-height: 1.7;
}

.values-section {
    padding: 100px 70px;
    background-color: #ecf0f1;
}

.values-section h2 {
    font-size: 3em;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.values-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-left,
.values-right {
    flex: 1;
}

.values-left p,
.values-right p {
    font-size: 1.15em;
    color: #5a6c7d;
    line-height: 1.9;
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-content,
    .contact-split {
        flex-direction: column;
    }

    .split-content.reverse {
        flex-direction: column;
    }

    .hero-left,
    .content-text,
    .contact-info {
        padding: 60px 40px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .directions-split,
    .values-split {
        flex-direction: column;
    }

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

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

    .philosophy-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 0.9em;
    }

    .hero-left h1 {
        font-size: 2.5em;
    }

    .section-header h2 {
        font-size: 2.2em;
    }

    .page-header h1 {
        font-size: 2.5em;
    }

    .main-form {
        padding: 30px;
    }
}