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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.header-main {
    background-color: #34495e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #bdc3c7;
    padding: 5px 10px;
    border: 1px solid #7f8c8d;
    border-radius: 4px;
}

.hero-section {
    background-color: #ecf0f1;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #95a5a6;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #34495e;
}

.btn-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

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

.section-alt {
    background-color: #ffffff;
    padding: 70px 0;
}

.section-dark {
    background-color: #34495e;
    padding: 70px 0;
    color: #ecf0f1;
}

.section-light {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.section-accent {
    background-color: #e8f4f8;
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: inherit;
}

.section-header p {
    font-size: 18px;
    color: inherit;
    opacity: 0.9;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image-container {
    width: 100%;
    height: 220px;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.service-content {
    padding: 25px;
}

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

.service-content p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

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

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
}

.form-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer-main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 30px;
}

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.footer-column p,
.footer-column address {
    font-size: 14px;
    line-height: 1.8;
    font-style: normal;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #6c7a89;
}

.contact-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e74c3c;
}

.info-item p {
    font-size: 16px;
    line-height: 1.6;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

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

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

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

.service-details {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.service-detail-item {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-detail-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-detail-image-container {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #e74c3c;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #e74c3c;
}

.cta-section .btn-primary:hover {
    background-color: #ecf0f1;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-main {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

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

    .service-card {
        min-width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

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