* {
    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;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background: #1a2332;
    color: #ecf0f1;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    padding: 0 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 25px;
}

.nav-items {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    flex: 1;
}

.nav-items a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 12px 10px;
    margin: 4px 0;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-items a:hover {
    background: rgba(255,255,255,0.1);
}

.ad-disclosure {
    font-size: 11px;
    padding: 15px 25px;
    color: #95a5a6;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.main-content {
    margin-left: 240px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.hero-content {
    padding: 80px 60px 40px;
    color: #ffffff;
    max-width: 720px;
}

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

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #c0392b;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #34495e;
}

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

.intro-section {
    padding: 90px 60px;
    background: #ecf0f1;
}

.intro-text {
    max-width: 780px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.visual-block {
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.visual-block img {
    width: 45%;
    height: 500px;
    background: #bdc3c7;
}

.visual-block-content {
    width: 55%;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-block-content h3 {
    font-size: 32px;
    margin-bottom: 22px;
    color: #2c3e50;
}

.visual-block-content p {
    font-size: 17px;
    color: #7f8c8d;
    line-height: 1.8;
}

.services-section {
    padding: 90px 60px;
    background: #f8f9fa;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.service-card {
    display: flex;
    margin-bottom: 50px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-image {
    width: 40%;
    background: #bdc3c7;
}

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

.service-details {
    width: 60%;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.select-service {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.trust-section {
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
}

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

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 35px 30px;
    border-radius: 10px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial span {
    font-size: 14px;
    color: #95a5a6;
}

.form-section {
    padding: 90px 60px;
    background: #ecf0f1;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 18px;
    color: #2c3e50;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 620px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #c0392b;
}

.disclaimer-section {
    padding: 50px 60px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #1a2332;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

.footer-section p {
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ecf0f1;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #ecf0f1;
    padding: 25px;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-reject {
    background: transparent;
    border: 1px solid #95a5a6;
    color: #ecf0f1;
}

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

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

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

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
    }

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

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

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

    .service-image,
    .service-details {
        width: 100%;
    }

    .visual-block {
        flex-direction: column;
    }

    .visual-block img,
    .visual-block-content {
        width: 100%;
    }

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