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

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

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

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

.btn-cookie-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #2980b9;
}

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

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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    min-height: 600px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.75));
    display: flex;
    align-items: center;
}

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

.hero-subtitle {
    color: #ecf0f1;
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 600px;
}

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

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

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

.content-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555555;
}

.bg-light {
    background: #f8f9fa;
}

.bg-accent {
    background: #ecf0f1;
}

.image-text-section {
    padding: 80px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555555;
}

.split-image {
    flex: 1;
    background: #ecf0f1;
}

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

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 12px;
}

.link-arrow::after {
    content: '→';
}

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

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

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

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

.feature-card p {
    font-size: 16px;
    color: #555555;
}

.testimonial-section {
    padding: 80px 0;
    background: #2c3e50;
}

.testimonial {
    text-align: center;
    color: #ffffff;
}

.testimonial p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: #ecf0f1;
}

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

.services-pricing-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
}

.intro-text {
    text-align: center;
    font-size: 18px;
    color: #555555;
    margin-bottom: 48px;
}

.pricing-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid #3498db;
    position: relative;
}

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

.service-desc {
    font-size: 16px;
    color: #555555;
    margin-bottom: 24px;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.form-notice {
    padding: 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    margin-bottom: 24px;
    text-align: center;
    color: #856404;
    display: none;
}

.form-notice.show {
    display: block;
}

.form-notice.success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.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;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

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

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

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

.footer-grid {
    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: 16px;
    color: #ffffff;
}

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

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

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

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

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

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

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

.thanks-container {
    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;
    color: #2c3e50;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    color: #555555;
    margin-bottom: 32px;
}

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

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.services-intro p {
    font-size: 20px;
    color: #555555;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-image {
    flex: 0 0 400px;
    background: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin: 16px 0;
}

.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: #555555;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.about-image {
    max-width: 900px;
    margin: 60px auto;
    background: #ecf0f1;
}

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

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

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.contact-header p {
    font-size: 20px;
    color: #555555;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
}

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

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

.contact-item p {
    font-size: 18px;
    color: #555555;
    line-height: 1.6;
}

.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: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 16px 0 16px 32px;
}

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

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

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

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

    .hero-subtitle {
        font-size: 18px;
    }

    .split-layout {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

    .service-item {
        flex-direction: column;
    }

    .service-image {
        flex: 1 1 auto;
        width: 100%;
    }

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