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

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

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

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.hero-section {
    padding: 0;
}

.hero-card {
    width: 100%;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

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

.hero-overlay p {
    color: #ecf0f1;
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-primary {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

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

.intro-card p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px 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 24px rgba(0,0,0,0.12);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #ecf0f1;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-select {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

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

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-card > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.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 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

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

.trust-card {
    text-align: center;
}

.trust-card h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.principle-item {
    flex: 1 1 300px;
    max-width: 350px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.principle-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.principle-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

.footer-section {
    flex: 1 1 200px;
}

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

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

.disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom > p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    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 1 400px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

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

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

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

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

.thanks-card p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-card .service-selected {
    font-weight: 700;
    color: #2c3e50;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    background: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.content-page {
    padding: 80px 0;
    background: #ffffff;
}

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

.content-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-container ul,
.content-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-container li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.8;
}

.about-hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

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

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

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

.about-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 0;
}

.team-member {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #ecf0f1;
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.team-member p {
    font-size: 1rem;
    color: #5a6c7d;
}

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

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-map {
    flex: 1 1 400px;
    min-height: 400px;
    background: #ecf0f1;
    border-radius: 12px;
}

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

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}