* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.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: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.insight-block {
    padding: 100px 40px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.insight-block h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-block p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #4a5568;
}

.approach-visual {
    display: flex;
    min-height: 700px;
}

.approach-left {
    flex: 0.9;
    background-color: #cbd5e0;
}

.approach-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-right {
    flex: 1.1;
    padding: 80px 70px;
    background-color: #f7fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-right h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.approach-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.story-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.story-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.story-grid {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.story-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 35px;
    border-radius: 6px;
}

.story-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.story-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
}

.testimonial-inline {
    padding: 90px 40px;
    background-color: #edf2f7;
}

.testimonial-inline blockquote {
    border-left: 4px solid #2c3e50;
    padding-left: 35px;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    color: #2d3748;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 1rem;
    color: #718096;
}

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

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 70px;
}

.services-flex {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-img {
    height: 240px;
    background-color: #cbd5e0;
}

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

.service-item h3 {
    padding: 25px 25px 15px;
    font-size: 1.5rem;
    color: #1a252f;
}

.service-item p {
    padding: 0 25px 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    flex-grow: 1;
}

.service-item .price {
    display: block;
    padding: 0 25px 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.form-intro {
    margin-bottom: 50px;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px 45px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    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%;
    padding: 16px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-elements {
    padding: 90px 40px;
    background-color: #ffffff;
}

.trust-elements h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.trust-elements p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.site-footer {
    background-color: #1a252f;
    color: #e2e8f0;
    padding: 70px 40px 40px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a0aec0;
}

.disclaimer {
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

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

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

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

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

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

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

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

.about-hero {
    padding: 100px 40px 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-hero p {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-split {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
}

.content-left {
    flex: 1;
}

.content-left img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

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

.content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.content-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.team-section {
    padding: 90px 40px;
    background-color: #f7fafc;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a252f;
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1a252f;
}

.team-member p {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
}

.contact-page {
    padding: 100px 40px;
}

.contact-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.contact-info p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.info-block p {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #4a5568;
}

.contact-visual {
    flex: 1;
    background-color: #cbd5e0;
    border-radius: 6px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: #1a252f;
}

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

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-content .selected-service {
    display: inline-block;
    margin: 30px 0;
    padding: 15px 30px;
    background-color: #e2e8f0;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

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

    .nav-links {
        gap: 20px;
    }

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

    .story-grid,
    .services-flex,
    .team-grid {
        flex-direction: column;
    }

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

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