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

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

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

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

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

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

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

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

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
}

.hero-content {
    max-width: 700px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.services-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-cards h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

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

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.card-content {
    padding: 24px;
}

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

.card-content p {
    margin-bottom: 16px;
    color: #6c757d;
    font-size: 15px;
}

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

.select-service {
    width: 100%;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #5568d3;
}

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

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #6c757d;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

button[type="submit"] {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

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

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

.feature-card {
    flex: 1 1 calc(25% - 24px);
    min-width: 240px;
    background-color: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.feature-card p {
    color: #6c757d;
    font-size: 15px;
}

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

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

.footer-column {
    flex: 1 1 250px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 24px;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #667eea;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #667eea;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #2c5f8d;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #495057;
}

.thanks-content .service-name {
    font-weight: 700;
    color: #2c5f8d;
}

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

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

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #495057;
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #6c757d;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 16px;
    padding-left: 32px;
    color: #6c757d;
}

.legal-page li {
    margin-bottom: 8px;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-info-section h1 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
}

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

.contact-column {
    flex: 1 1 300px;
}

.contact-column h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.contact-column p {
    margin-bottom: 12px;
    color: #495057;
}

.contact-column .email {
    color: #495057;
    font-weight: 600;
}

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

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

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

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

.about-image {
    width: 100%;
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
}

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

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

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

.value-item p {
    color: #6c757d;
    font-size: 16px;
}

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

.services-page h1 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 56px;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 16px;
    }

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

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

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }
}