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

.container {
    max-width: 1200px;
    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: 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;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.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: #27ae60;
    color: white;
}

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

.btn-reject {
    background-color: #7f8c8d;
    color: white;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

.main-header {
    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;
    background-color: #ecf0f1;
    padding: 4px 12px;
    border-radius: 4px;
}

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

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

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

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #2c3e50;
    color: white;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    position: relative;
    background-color: #34495e;
}

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

.cta-button {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

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

.intro-card p {
    color: #555;
    line-height: 1.7;
}

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

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

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

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

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

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

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

.service-content {
    padding: 24px;
}

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

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

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

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

.select-service:hover {
    background-color: #357abd;
}

.select-service.selected {
    background-color: #27ae60;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-intro p {
    font-size: 18px;
    color: #555;
}

.selected-service-display {
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 4px;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
}

.service-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.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 #d0d0d0;
    border-radius: 4px;
    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: #4a90e2;
}

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

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

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

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

.trust-content img {
    flex: 1;
    min-width: 400px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.trust-text {
    flex: 1;
    min-width: 400px;
}

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

.trust-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

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

.disclaimer-box p {
    color: #555;
    line-height: 1.7;
}

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

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

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

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

.footer-column p {
    color: #ecf0f1;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content-wrapper ul {
    margin-bottom: 16px;
    margin-left: 24px;
    color: #555;
    line-height: 1.7;
}

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

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

.about-image {
    flex: 1;
    min-width: 400px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

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

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

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

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

.value-card p {
    color: #555;
    line-height: 1.6;
}

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

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

.contact-info {
    flex: 1;
    min-width: 400px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-item p {
    color: #555;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-width: 400px;
    background-color: #ecf0f1;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

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

    .hero-content {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .main-nav {
        width: 100%;
        justify-content: center;
    }

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

    .trust-content,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .trust-content img,
    .about-image,
    .trust-text,
    .about-text,
    .contact-info,
    .contact-map {
        min-width: 100%;
    }

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