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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8ba8;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #ffeaa7;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 50px;
    background-color: var(--bg-light);
}

.hero-text-content {
    max-width: 550px;
}

.hero-text-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-text-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #d35400;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.services-split {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.service-item-split {
    display: flex;
    margin-bottom: 50px;
    background-color: var(--bg-white);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 50px;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-content-left p,
.service-content-right p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: var(--secondary-color);
}

.service-img-right,
.service-img-left {
    flex: 1;
    overflow: hidden;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-header p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #fff9e6;
    border-top: 1px solid #f0e6d2;
    border-bottom: 1px solid #f0e6d2;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #5c4a1a;
    text-align: center;
}

.main-footer {
    background-color: #1a2b3c;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
}

.footer-col p {
    line-height: 1.8;
    font-size: 15px;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

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

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

.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story-split {
    display: flex;
    padding: 80px 0;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.story-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.team-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.approach-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.approach-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.approach-text {
    flex: 1.3;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.approach-img {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.cta-section-alt {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-section-alt p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.services-detail-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.service-detail-content {
    flex: 1.5;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-price-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-detail-img {
    flex: 1;
    overflow: hidden;
}

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

.contact-page-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-split-layout {
    display: flex;
    gap: 0;
}

.contact-info-side {
    flex: 1;
    padding: 60px 50px;
    background-color: var(--bg-light);
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-detail-block {
    margin-bottom: 35px;
}

.contact-detail-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-visual-side {
    flex: 1;
    overflow: hidden;
}

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

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.thanks-info-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-info-box ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info-box ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-info-box ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.selected-service-display {
    margin: 30px 0;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #4caf50;
}

.service-confirmation h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.next-steps-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.next-steps-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.next-steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.next-step-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.next-step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.next-step-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.next-step-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.next-step-card a:hover {
    color: var(--secondary-color);
}

.legal-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-light);
}

.cookie-controls {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
    text-align: center;
}

.cookie-controls h2 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .hero-split,
    .about-story-split,
    .service-item-split,
    .service-detail-card,
    .approach-split,
    .contact-split-layout {
        flex-direction: column;
    }

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

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .testimonials-grid,
    .values-grid,
    .next-steps-grid {
        flex-direction: column;
    }

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

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

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