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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
}

.cookie-content a {
    color: #4a9eff;
}

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

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

.btn-accept {
    background: #4a9eff;
    color: #fff;
}

.btn-accept:hover {
    background: #3a7ed6;
}

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

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #c0392b;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.ad-notice {
    padding: 6px 12px;
    background: #fff3cd;
    color: #856404;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
}

.hero-section {
    background: #ecf0f1;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.85), rgba(142, 68, 173, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #fff;
    max-width: 700px;
}

.intro-section {
    background: #fff;
    padding: 80px 40px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #c0392b;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.feature-cards-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 20px 24px 12px;
    font-size: 24px;
    color: #2c3e50;
}

.feature-card p {
    padding: 0 24px 24px;
    color: #666;
    font-size: 16px;
}

.services-preview {
    background: #2c3e50;
    padding: 80px 40px;
    color: #fff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.services-intro p {
    font-size: 20px;
    opacity: 0.9;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-item {
    background: #34495e;
    padding: 36px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.service-item p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #bdc3c7;
    flex-grow: 1;
}

.service-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
    display: block;
}

.cta-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background: #c0392b;
    transform: scale(1.02);
}

.testimonial-section {
    background: #fff;
    padding: 80px 40px;
}

.testimonial-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-content h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #c0392b;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 16px;
    color: #555;
}

.testimonial cite {
    font-size: 15px;
    color: #777;
    font-style: normal;
}

.form-section {
    background: #ecf0f1;
    padding: 80px 40px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-container > p {
    margin-bottom: 32px;
    color: #666;
    font-size: 16px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c0392b;
}

.submit-btn {
    background: #c0392b;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background: #a02d23;
    transform: scale(1.02);
}

.info-section {
    background: #fff;
    padding: 80px 40px;
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.info-columns {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.info-col {
    flex: 1;
    min-width: 280px;
}

.info-col h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #c0392b;
}

.info-col p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.visual-break {
    height: 500px;
    overflow: hidden;
    background: #34495e;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.final-cta {
    background: linear-gradient(135deg, #8e44ad, #c0392b);
    padding: 100px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #c0392b;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.main-footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 60px 40px 30px;
}

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

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

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 12px;
    color: #888;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .cards-container,
    .services-grid,
    .testimonial-grid,
    .info-columns {
        flex-direction: column;
    }

    .form-container {
        padding: 32px 24px;
    }
}