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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #f8f9fa;
}

.header-wrapper {
    background: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.ad-disclosure {
    background: #16213e;
    color: #e0e0e0;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.main-nav a:hover {
    color: #4a90e2;
}

.hero-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.92)), url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 100px;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
}

.content-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 30px;
}

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

.editorial-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a2e;
    line-height: 1.4;
}

.editorial-section h3 {
    font-size: 1.5rem;
    margin: 35px 0 20px;
    color: #16213e;
}

.editorial-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

.inline-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 35px 0;
    background-color: #e8eaed;
}

.reference-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.reference-link:hover {
    text-decoration: underline;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.price-tag {
    font-size: 1.8rem;
    color: #4a90e2;
    font-weight: 700;
    margin: 20px 0;
}

.select-service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #16213e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.select-service-btn:hover {
    background: #1a1a2e;
    transform: translateX(5px);
}

.contact-form-section {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    margin: 60px 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

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

.contact-info h3 {
    margin-bottom: 20px;
    color: #1a1a2e;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
}

.references-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.references-section h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.references-section ol {
    padding-left: 25px;
}

.references-section li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 50px 0;
    border-radius: 5px;
}

.disclaimer-box h4 {
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-box p {
    color: #856404;
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    color: white;
    padding: 25px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-accept {
    background: #4a90e2;
    color: white;
}

.cookie-accept:hover {
    background: #357abd;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-message {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-message h1 {
    color: #4a90e2;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.legal-content h1 {
    margin-bottom: 30px;
    color: #1a1a2e;
    font-size: 2.3rem;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #16213e;
    font-size: 1.7rem;
}

.legal-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 50px 20px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

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

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

.about-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team-section {
    background: white;
    padding: 50px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin: 25px 0;
    background-color: #e8eaed;
}
