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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2d7dc4;
    --accent-color: #f39c12;
    --text-dark: #1e1e1e;
    --text-light: #555555;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #dddddd;
    --success-color: #27ae60;
    --error-color: #c0392b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--background-white);
    font-size: 16px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.95);
    color: var(--background-white);
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

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

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

.site-header {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--background-light);
}

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

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

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

.hero-block {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--text-dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-block h1 {
    font-size: 52px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    color: white;
    max-width: 600px;
}

.intro-statement {
    padding: 80px 0;
    background-color: var(--background-light);
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
}

.feature-showcase {
    padding: 100px 0;
    background-color: var(--background-white);
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.showcase-visual {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.showcase-content {
    flex: 1;
}

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

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

.problem-insight {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: white;
}

.problem-insight h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: white;
}

.problem-insight p {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.services-grid {
    padding: 100px 0;
    background-color: var(--background-white);
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px 20px;
    color: var(--text-dark);
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 20px 20px 20px;
}

.select-service-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

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

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

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

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

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

.trust-indicators h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.disclaimer-block {
    padding: 60px 0;
    background-color: var(--background-light);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px 0;
}

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

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

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

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: 80px 0 60px 0;
    background-color: var(--background-light);
    border-bottom: 3px solid var(--primary-color);
}

.page-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
}

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

.intro-text {
    font-size: 24px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

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

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

.story-visual {
    flex: 1;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 0;
    background-color: var(--background-white);
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.approach-section {
    padding: 100px 0;
    background-color: var(--background-white);
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

.services-detailed {
    padding: 80px 0;
    background-color: var(--background-white);
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-detail-content {
    flex: 1;
}

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

.service-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 8px;
}

.service-pricing-box {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.service-detail-visual {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.contact-block {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.email-display {
    font-weight: 600;
    color: var(--primary-color);
}

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

.contact-info-additional {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-info-additional h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

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

.location-map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--background-light);
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.8;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 84, 144, 0.9);
    padding: 20px;
    color: white;
}

.map-overlay p {
    font-size: 16px;
    margin: 0;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

.thanks-hero {
    padding: 120px 0;
    background-color: var(--background-light);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px auto;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-confirmation {
    margin-top: 20px;
    padding: 16px;
    background-color: var(--background-white);
    border-radius: 8px;
    display: inline-block;
}

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

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

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.thanks-cta p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.btn-secondary {
    padding: 14px 28px;
    background-color: var(--background-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

@media (max-width: 768px) {
    .hero-block h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .showcase-item,
    .story-block,
    .service-detail-block {
        flex-direction: column;
    }

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

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

    .main-nav {
        width: 100%;
    }
}