* {
    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;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
}

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

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

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

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

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

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

.floating-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 16px 0;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
}

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

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 10px;
    border-radius: 3px;
}

.hero-visual {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.7), rgba(52, 73, 94, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    max-width: 800px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 600px;
    margin-bottom: 40px;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 120px 40px;
    background: #ecf0f1;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 32px;
    line-height: 1.3;
}

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

.intro-visual {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cards {
    padding: 100px 40px;
    background: #ffffff;
}

.services-cards h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.card-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.select-service {
    width: 100%;
    padding: 14px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #c0392b;
}

.testimonials-flow {
    padding: 100px 40px;
    background: #34495e;
    color: #ffffff;
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

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

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

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

.form-container {
    max-width: 600px;
    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: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    border: 1px solid #ddd;
    padding: 24px;
    border-radius: 6px;
}

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

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

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

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

.footer-column p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #e74c3c;
}

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

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

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

    .nav-links {
        gap: 20px;
    }

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

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

    .intro-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .intro-text h2 {
        font-size: 32px;
    }

    .services-cards h2 {
        font-size: 36px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .form-container {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

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

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-selected {
    display: inline-block;
    padding: 12px 24px;
    background: #ecf0f1;
    color: #e74c3c;
    font-weight: 700;
    border-radius: 6px;
    margin: 20px 0;
}

.back-home {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 40px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: #c0392b;
}

.content-page {
    padding: 80px 40px;
    background: #ffffff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h1 {
    font-size: 44px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 32px;
}

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 48px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: #34495e;
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-wrapper p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0 20px 24px;
}

.content-wrapper li {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.content-wrapper a {
    color: #e74c3c;
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

.about-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 100px 40px;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-container h1 {
    font-size: 44px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

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

.contact-block {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #ecf0f1;
    border-radius: 8px;
}

.contact-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.services-page {
    padding: 80px 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

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