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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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;
}

.header {
    background: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #95a5a6;
    background: rgba(255,255,255,0.05);
    padding: 5px 12px;
    border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

.btn-reject {
    background: #7f8c8d;
    color: white;
}

.btn-reject:hover {
    background: #6c7a7b;
}

.hero-section {
    position: relative;
    background: #34495e;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(26, 35, 50, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

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

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.intro-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

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

.services-preview {
    padding: 100px 20px;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.service-image {
    width: 100%;
    height: 280px;
    background: #ecf0f1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #7f8c8d;
}

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

.service-select {
    width: 100%;
    background: #3498db;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: #2980b9;
}

.why-section {
    padding: 100px 20px;
    background: #ecf0f1;
}

.why-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.why-text {
    flex: 1;
    min-width: 300px;
}

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

.why-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.why-image {
    flex: 1;
    min-width: 300px;
    background: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonials-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

.testimonial {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 15px;
}

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

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

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

.form-description {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 16px;
    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-button {
    width: 100%;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #c0392b;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.disclaimer-box {
    background: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

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

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
}

.footer {
    background: #1a2332;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

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

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.thanks-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.contact-container {
    padding: 80px 20px;
}

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

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

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

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h3 {
    font-size: 16px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    padding: 80px 20px;
}

.about-section {
    margin-bottom: 60px;
}

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

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 15px;
}

.services-list-container {
    padding: 80px 20px;
}

.services-list-container h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #7f8c8d;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.legal-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

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