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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

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

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.nav-main {
    display: flex;
    gap: 30px;
}

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

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

.hero-section {
    position: relative;
    background-color: #1a1a1a;
}

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

.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(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.benefits-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.benefit-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px 20px;
    color: #2c3e50;
}

.benefit-card p {
    padding: 0 20px 20px 20px;
    color: #555555;
    line-height: 1.6;
}

.services-preview-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

.services-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-preview-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #d5d8dc;
}

.service-preview-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-preview-item p {
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    font-weight: 700;
    color: #27ae60;
    font-size: 20px;
}

.cta-center {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

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

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.trust-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

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

.testimonial-author {
    font-size: 14px;
    color: #bdc3c7;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d5d8dc;
    border-radius: 4px;
    font-size: 15px;
    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 {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef9e7;
    border-top: 2px solid #f9e79f;
    border-bottom: 2px solid #f9e79f;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #7d6608;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 14px;
}

.services-page-header {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.services-page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.services-page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-list-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-list-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
}

.service-image {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    min-width: 300px;
}

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

.service-content p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    display: block;
    margin-top: 12px;
}

.about-header {
    padding: 80px 0;
    background-color: #ecf0f1;
    text-align: center;
}

.about-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-header p {
    font-size: 18px;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

.about-content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.about-image-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.about-image-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-page-header {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.contact-page-header h1 {
    font-size: 42px;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info-card p {
    color: #555555;
    line-height: 1.7;
}

.legal-page-header {
    padding: 60px 0;
    background-color: #ecf0f1;
    text-align: center;
}

.legal-page-header h1 {
    font-size: 36px;
    color: #2c3e50;
}

.legal-content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-content-section h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content-section h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 16px;
}

.legal-content-section ul {
    margin-left: 30px;
    margin-bottom: 16px;
}

.legal-content-section li {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 8px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

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

.thanks-box h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.thanks-box p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-box .btn-primary {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-main {
        flex-direction: column;
        gap: 12px;
    }

    .service-item {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }

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