* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
}

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

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

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

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

.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;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(212, 165, 116, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.btn-primary:hover {
    background-color: #c29563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

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

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

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

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

.services-section {
    padding: 80px 0;
}

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

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 48px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

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

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

.service-card.selected {
    border: 2px solid #d4a574;
}

.card-image {
    height: 240px;
    overflow: hidden;
    background-color: #e9ecef;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

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

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 16px;
}

.btn-card {
    width: 100%;
    padding: 12px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background-color: #1a252f;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.form-header p {
    font-size: 16px;
    color: #6c757d;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    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: #d4a574;
}

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

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

.trust-section {
    padding: 80px 0;
}

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

.trust-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

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

.trust-card p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

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

.disclaimer-text {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    color: #adb5bd;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
    min-height: 400px;
    border-radius: 8px;
}

.about-page {
    padding: 80px 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

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

.about-hero p {
    font-size: 20px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

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

.legal-page {
    padding: 80px 0;
}

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

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

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

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

.legal-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 8px;
}

.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 h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-hero p {
    font-size: 20px;
    color: #6c757d;
}

@media (max-width: 968px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

    .nav-main.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

    .intro-grid {
        flex-direction: column;
    }

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

    .cards-grid {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
    }

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

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

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

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

@media (max-width: 640px) {
    .hero-section {
        height: 500px;
    }

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

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

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

    .intro-section,
    .services-section,
    .trust-section,
    .form-section {
        padding: 48px 0;
    }

    .services-section h2 {
        font-size: 32px;
    }

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