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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie.reject:hover {
    background-color: #5d6d7e;
}

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #34495e;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52,73,94,0.92) 0%, rgba(44,62,80,0.85) 100%);
    display: flex;
    align-items: center;
}

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

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

.intro-cards {
    padding: 60px 0;
    background-color: #fff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.card-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

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

.info-card p {
    color: #5d6d7e;
    font-size: 15px;
}

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #fff;
    border-radius: 10px;
    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 20px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

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

.service-content p {
    color: #5d6d7e;
    font-size: 15px;
    margin-bottom: 18px;
}

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

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

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

.why-section {
    padding: 80px 0;
    background-color: #fff;
}

.why-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

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

.why-text p {
    color: #5d6d7e;
    font-size: 16px;
    margin-bottom: 20px;
}

.why-stats {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: #3498db;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.95;
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.form-card > p {
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.page-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

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

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

.content-card {
    background-color: #fff;
    padding: 45px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.content-card p {
    color: #5d6d7e;
    font-size: 16px;
    margin-bottom: 18px;
}

.content-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.expertise-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.exp-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.exp-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

.exp-card p {
    color: #5d6d7e;
    font-size: 15px;
}

.values-section {
    background-color: #fff;
    padding: 45px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.value-item p {
    color: #5d6d7e;
    font-size: 15px;
}

.team-section {
    background-color: #fff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.team-section p {
    color: #5d6d7e;
    font-size: 16px;
    margin-bottom: 18px;
}

.team-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
    padding: 45px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    color: #5d6d7e;
    font-size: 16px;
    margin-bottom: 18px;
}

.service-detail-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.service-detail-content li {
    color: #5d6d7e;
    margin-bottom: 10px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
    background-color: #fff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #34495e;
    font-weight: 600;
}

.contact-detail p {
    color: #5d6d7e;
    font-size: 15px;
}

.contact-note {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin-top: 25px;
}

.contact-note p {
    color: #34495e;
    font-size: 14px;
}

.contact-image {
    flex: 1;
    min-width: 320px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-areas {
    background-color: #fff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.service-areas > p {
    color: #5d6d7e;
    font-size: 16px;
    margin-bottom: 30px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.area-card {
    flex: 1 1 calc(33.333% - 15px);
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

.area-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.area-card p {
    color: #7f8c8d;
    font-size: 14px;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 45px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.service-reference {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.service-reference p {
    color: #34495e;
    font-size: 16px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

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

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

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

.btn-primary {
    padding: 14px 32px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: #95a5a6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-content {
    padding: 60px 0;
}

.legal-text {
    background-color: #fff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.legal-text h2 {
    font-size: 28px;
    margin: 35px 0 18px;
    color: #2c3e50;
}

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

.legal-text h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: #34495e;
}

.legal-text p {
    color: #5d6d7e;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-text ul {
    margin: 15px 0 20px;
    padding-left: 25px;
}

.legal-text li {
    color: #5d6d7e;
    margin-bottom: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dfe6e9;
}

.cookies-table th {
    background-color: #ecf0f1;
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table td {
    color: #5d6d7e;
    font-size: 14px;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

.footer-disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .why-stats {
        flex: 1;
        width: 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

    .main-nav {
        gap: 15px;
        font-size: 14px;
    }
}