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

.ad-disclosure {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-cards {
    margin-bottom: 60px;
}

.main-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background-color: #34495e;
}

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

.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;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

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

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 650px;
}

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

.intro-cards {
    padding: 70px 0;
    background: #ffffff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.info-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-card p {
    color: #555;
    font-size: 16px;
}

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

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

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

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 360px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #bdc3c7;
}

.card-content {
    padding: 30px;
}

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

.card-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

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

.cta-btn {
    width: 100%;
    padding: 14px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.process-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 240px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

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

.process-card p {
    color: #666;
    font-size: 15px;
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 32px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

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

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

.trust-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

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

.trust-card p {
    color: #666;
    font-size: 15px;
}

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

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

.footer-card {
    flex: 1;
    min-width: 220px;
}

.footer-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3498db;
}

.footer-card p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 25px 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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    color: #555;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.page-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
}

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

.content-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
}

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

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

.content-card p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.content-card ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.content-card ul li {
    margin-bottom: 8px;
    color: #555;
}

.contact-info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

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

.contact-info-card p {
    color: #666;
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-info-card strong {
    color: #2c3e50;
}

.thanks-card {
    max-width: 700px;
    margin: 80px auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
}

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

.thanks-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-card .selected-service {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-card .back-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-card .back-btn:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

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

    .card-grid,
    .service-cards,
    .process-cards,
    .trust-cards {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}