:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a9eda;
    --accent-color: #e8b44f;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
}

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

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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-notice {
    padding: 8px 16px;
    background-color: #fff3cd;
    border-radius: 4px;
}

.ad-label {
    font-size: 12px;
    color: #856404;
    font-weight: 500;
}

.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(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.hero-text-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

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

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

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.split-visual {
    flex: 1;
    position: relative;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.section-title-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    height: 200px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--primary-color);
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.form-intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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(--secondary-color);
}

.btn-submit {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

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

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaaaaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 0;
}

.service-block {
    margin-bottom: 80px;
}

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

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

.service-detail-left {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-right {
    flex: 1;
    padding: 20px;
}

.service-detail-right h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

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

.price-display {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.price-amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.cta-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.about-story,
.about-approach,
.about-team,
.about-values,
.about-cta {
    padding: 60px 0;
}

.about-story {
    background-color: var(--bg-white);
}

.about-approach {
    background-color: var(--bg-light);
}

.about-team {
    background-color: var(--bg-white);
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.member-role {
    display: block;
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.member-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.about-values {
    background-color: var(--bg-light);
}

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

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

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

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

.about-cta {
    background-color: var(--bg-white);
}

.contact-content {
    padding: 60px 0;
}

.contact-split {
    display: flex;
    gap: 50px;
}

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

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.process-list {
    padding-left: 20px;
}

.process-list li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
}

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

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

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

.thanks-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps {
    padding-left: 20px;
}

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

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.thanks-service-info p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

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

.thanks-additional {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.additional-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

.legal-wrapper h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--secondary-color);
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .header-content {
        position: relative;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        gap: 15px;
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .services-grid-3 {
        flex-direction: column;
    }

    .service-card {
        min-width: auto;
    }

    .service-split,
    .service-block.reverse .service-split {
        flex-direction: column;
    }

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

    .contact-split {
        flex-direction: column;
    }

    .contact-visual {
        min-height: 300px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-box {
        padding: 30px 20px;
    }

    .thanks-box h1 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .hero-text-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title-center {
        font-size: 28px;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

    .legal-wrapper h1 {
        font-size: 30px;
    }
}