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

.container-wide {
    max-width: 1400px;
    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;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    min-width: 300px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.ad-label {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

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

.nav-links a:hover {
    color: #2563eb;
}

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

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

.hero-section .hero-image {
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.85) 0%, rgba(15,23,42,0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 700;
    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: #2563eb;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-icon {
    color: #2563eb;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.info-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e293b;
}

.card-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.services-showcase,
.services-preview {
    padding: 90px 0;
    background-color: #ffffff;
}

.services-showcase h2,
.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1e293b;
}

.section-intro {
    text-align: center;
    color: #64748b;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards,
.services-cards {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #cbd5e1;
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e1;
}

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1e293b;
}

.service-info p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 15px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
}

.btn-select,
.cta-select {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-select:hover,
.cta-select:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

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

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

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

.form-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1e293b;
}

.form-header p {
    color: #64748b;
    font-size: 16px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
    font-size: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

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

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.process-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.process-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-card {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
    padding: 40px 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-card:hover {
    background-color: #e7f3ff;
    transform: translateY(-4px);
}

.step-number {
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
}

.process-card h3,
.process-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.process-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-content,
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p,
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-column a,
.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover,
.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.disclaimer {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-page {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1e293b;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #334155;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #475569;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #64748b;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.thanks-message {
    text-align: center;
    padding: 100px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-message p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-message .btn-home {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-message .btn-home:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .services-showcase h2,
    .services-preview h2,
    .process-section h2 {
        font-size: 32px;
    }

    .form-wrapper {
        padding: 30px 25px;
    }

    .footer-content,
    .footer-container {
        gap: 30px;
    }
}