* {
    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-color: #f8f9fa;
    display: flex;
    min-height: 100vh;
}

.sidebar-nav {
    width: 280px;
    background: linear-gradient(180deg, #1a2332 0%, #2c3e50 100%);
    color: #ecf0f1;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
}

.nav-header {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.nav-tagline {
    font-size: 0.9rem;
    color: #95a5a6;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-links a:hover {
    background-color: rgba(52, 152, 219, 0.1);
    border-left-color: #3498db;
    padding-left: 2.3rem;
}

.nav-links a.active {
    background-color: rgba(52, 152, 219, 0.2);
    border-left-color: #3498db;
    font-weight: 600;
}

.nav-footer {
    padding: 2rem 2rem 0 2rem;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.nav-legal {
    display: flex;
    flex-direction: column;
}

.nav-legal a {
    font-size: 0.8rem;
    color: #95a5a6;
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

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

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 0;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 3rem 4rem;
    color: white;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
}

.intro-section {
    display: flex;
    align-items: center;
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.intro-block {
    flex: 1;
    padding-right: 3rem;
}

.intro-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-preview {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.price-tag {
    background-color: #e8f4f8;
    color: #2980b9;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    margin: 1rem 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.btn-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #3498db;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.features-section {
    display: flex;
    padding: 5rem 4rem;
    background-color: #ffffff;
    align-items: center;
}

.feature-left {
    flex: 1;
    padding-right: 3rem;
}

.feature-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.feature-right {
    flex: 0 0 450px;
    background-color: #ecf0f1;
}

.feature-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-section {
    padding: 5rem 4rem;
    background-color: #ecf0f1;
}

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    font-size: 1rem;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 4rem;
    background-color: #ffffff;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 4rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 4rem 4rem;
}

.service-detail {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.service-detail-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-detail-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-top: 1rem;
}

.service-pricing .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2980b9;
}

.cta-section {
    text-align: center;
    padding: 4rem 4rem;
    background-color: #ecf0f1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.about-story {
    display: flex;
    align-items: center;
    padding: 4rem 4rem;
    background-color: #ffffff;
}

.about-content {
    flex: 1;
    padding-right: 3rem;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 4rem 4rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 0 0 calc(50% - 1rem);
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.value-item p {
    line-height: 1.7;
    color: #555;
}

.expertise-section {
    padding: 4rem 4rem;
    background-color: #ffffff;
}

.expertise-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.expertise-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.expertise-text {
    flex: 1;
}

.expertise-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.expertise-list {
    flex: 0 0 350px;
    list-style: none;
    background-color: #f8f9fa;
    padding: 2rem;
}

.expertise-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.coverage-section {
    display: flex;
    align-items: center;
    padding: 4rem 4rem;
    background-color: #f8f9fa;
}

.coverage-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

.coverage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coverage-content {
    flex: 1;
    padding-left: 3rem;
}

.coverage-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.coverage-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.commitment-section {
    padding: 4rem 4rem;
    background-color: #ffffff;
}

.commitment-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.commitment-text {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.contact-layout {
    display: flex;
    padding: 4rem 4rem;
    background-color: #ffffff;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.email-text {
    color: #2c3e50;
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.response-info {
    padding: 4rem 4rem;
    background-color: #f8f9fa;
}

.response-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.response-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.response-item {
    flex: 0 0 calc(33.333% - 1.333rem);
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.response-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.response-item p {
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    display: flex;
    padding: 4rem 4rem;
    background-color: #ffffff;
    align-items: center;
    gap: 3rem;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-detail {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.thanks-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #95a5a6;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.thanks-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.next-steps {
    padding: 4rem 4rem;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.step-item {
    flex: 0 0 calc(33.333% - 1.333rem);
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-item p {
    line-height: 1.7;
    color: #555;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: white;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.legal-page p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px 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;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

    .sidebar-nav {
        position: static;
        width: 100%;
        height: auto;
    }

    .main-content {
        margin-left: 0;
    }

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

    .intro-section,
    .features-section,
    .about-story,
    .coverage-section,
    .contact-layout,
    .thanks-section,
    .service-detail {
        flex-direction: column;
    }

    .intro-image,
    .feature-right,
    .about-image,
    .coverage-image,
    .contact-image,
    .thanks-image,
    .service-detail-image {
        flex: 0 0 300px;
    }

    .services-grid,
    .response-grid,
    .steps-grid {
        flex-direction: column;
    }

    .service-card,
    .response-item,
    .step-item {
        width: 100%;
    }

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