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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-section {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    background: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 500px;
}

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

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

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

.cta-primary:hover {
    background: #2980b9;
}

.intro-block {
    padding: 80px 30px;
    background: #ffffff;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
}

.approach-section {
    padding: 100px 30px;
    background: #ecf0f1;
}

.approach-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background: #bdc3c7;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    margin-top: 10px;
}

.link-inline:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

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

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

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 240px;
    background: #dfe6e9;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a252f;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #5a6c7d;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 20px;
}

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

.btn-select-service:hover {
    background: #2980b9;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-container > p {
    margin-bottom: 35px;
    color: #5a6c7d;
    font-size: 17px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.selected-service-display {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.selected-service-display p {
    margin-bottom: 8px;
}

.btn-submit {
    padding: 16px 32px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #229954;
}

.trust-section {
    padding: 80px 30px;
    background: #ffffff;
}

.trust-section h2 {
    font-size: 34px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
}

.trust-points {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    color: #5a6c7d;
    font-size: 16px;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
}

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-header {
    padding: 100px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.story-section {
    padding: 80px 30px;
    background: #ffffff;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.team-visual {
    padding: 0;
    background: #ecf0f1;
}

.visual-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.values-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

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

.value-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-block p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-detail {
    padding: 80px 30px;
    background: #f8f9fa;
}

.approach-container {
    max-width: 900px;
    margin: 0 auto;
}

.approach-text-full h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
}

.approach-text-full p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.8;
}

.expertise-section {
    padding: 80px 30px;
    background: #ffffff;
}

.expertise-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
}

.expertise-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.cta-section {
    padding: 100px 30px;
    background: #2c3e50;
    text-align: center;
}

.cta-container h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 10px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2980b9;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #ffffff;
    margin: 0 10px;
    transition: all 0.3s;
}

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

.services-detailed {
    padding: 80px 30px;
    background: #ffffff;
}

.service-detail-card {
    max-width: 1100px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background: #ecf0f1;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.service-detail-content ul {
    margin: 25px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    font-size: 16px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0 20px;
}

.contact-section {
    padding: 80px 30px;
    background: #ffffff;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 4px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 16px;
    color: #5a6c7d;
}

.contact-map {
    flex: 1;
    background: #ecf0f1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: #dfe6e9;
}

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

.additional-info {
    padding: 80px 30px;
    background: #f8f9fa;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.additional-info p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.legal-page {
    padding: 60px 30px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-container p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    font-size: 17px;
}

.thanks-section {
    padding: 100px 30px;
    background: #f8f9fa;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.submission-details {
    margin-bottom: 50px;
}

.selected-service-box {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.selected-service-box p {
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c3e50;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a252f;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 35px;
    color: #1a252f;
}

.steps-list {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.step {
    flex: 1;
    display: flex;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    font-size: 15px;
    color: #5a6c7d;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

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

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .approach-wrapper {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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

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

    .trust-points {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .steps-list {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}