* {
    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-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: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    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-color: #2ecc71;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

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

.ad-notice {
    background-color: #f8f9fa;
    padding: 8px 16px;
    border-radius: 4px;
}

.ad-notice span {
    font-size: 12px;
    color: #7f8c8d;
}

.hero-section {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 500px;
    background-color: #34495e;
    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(52, 73, 94, 0.85) 0%, rgba(44, 62, 80, 0.7) 100%);
    display: flex;
    align-items: center;
}

.hero-overlay h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.intro-content h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.services-showcase h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

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

.service-image {
    height: 250px;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.why-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

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

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

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

.form-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    border-left: 4px solid #27ae60;
}

.selected-service-info p {
    margin: 0;
    color: #2c3e50;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.trust-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
}

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

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

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

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

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

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

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin: 20px auto 0;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-overlay h2 {
        font-size: 32px;
    }

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

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

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

    .testimonial {
        flex: 1 1 100%;
    }

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h2 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 25px;
}

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

.thanks-content .selected-service {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-content .selected-service strong {
    color: #2c3e50;
    font-size: 20px;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.page-header {
    padding: 80px 0 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.page-content {
    padding: 60px 0;
}

.page-content h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 40px;
}

.page-content h4 {
    font-size: 22px;
    color: #34495e;
    margin-bottom: 15px;
    margin-top: 30px;
}

.page-content p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.page-content li {
    margin-bottom: 10px;
    color: #34495e;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-info strong {
    color: #2c3e50;
}

.about-section {
    padding: 60px 0;
}

.about-section:nth-child(even) {
    background-color: #f8f9fa;
}

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

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

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

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

@media (max-width: 768px) {
    .about-content,
    .about-content.reverse {
        flex-direction: column;
    }
}