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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 10px;
    border-radius: 3px;
}

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a2e;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,90,160,0.8), rgba(28,52,91,0.9));
}

.hero-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 700px;
}

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

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

.btn-primary {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

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

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.intro-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    text-align: left;
}

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

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

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

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

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

.card-image-wrapper {
    height: 240px;
    overflow: hidden;
    background: #dfe6e9;
}

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

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.btn-select-service {
    background: #2c5aa0;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

.btn-select-service:hover {
    background: #1e3a70;
}

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

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

.form-wrapper h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.btn-submit:hover {
    background: #229954;
}

.why-section {
    padding: 80px 0;
    background: #2c3e50;
    color: #ffffff;
}

.why-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.why-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.why-card p {
    font-size: 16px;
    color: #bdc3c7;
}

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-card h3 {
    font-size: 24px;
    color: #856404;
    margin-bottom: 15px;
}

.disclaimer-card p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a2e;
    color: #bdc3c7;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 20px;
    flex-wrap: wrap;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
}

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

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

.btn-cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #2c5aa0, #1e3a70);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.about-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-layout {
    display: flex;
    gap: 40px;
}

.about-main {
    flex: 2;
}

.content-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.content-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-sidebar {
    flex: 1;
    min-width: 300px;
}

.sidebar-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

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

.sidebar-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.cta-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

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

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

.services-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-detail-header {
    background: linear-gradient(135deg, #2c5aa0, #1e3a70);
    color: #ffffff;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-detail-header h2 {
    font-size: 28px;
    margin: 0;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
}

.service-detail-content {
    padding: 35px;
}

.service-detail-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    gap: 40px;
}

.contact-main {
    flex: 2;
}

.contact-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-detail {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-detail h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-sidebar {
    flex: 1;
    min-width: 300px;
}

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.thanks-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    color: #27ae60;
}

.thanks-wrapper h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.thanks-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
}

.step-item h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 15px;
    color: #5a6c7d;
}

.thanks-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-info p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.legal-wrapper h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 35px;
    margin-bottom: 20px;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 20px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-wrapper p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-wrapper ul {
    margin: 15px 0 15px 25px;
}

.legal-wrapper ul li {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
    }

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

    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

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

    .thanks-wrapper {
        padding: 40px 25px;
    }

    .thanks-steps {
        flex-direction: column;
    }

    .legal-wrapper {
        padding: 30px 20px;
    }
}