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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 0 15px;
}

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

.navigation a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.3));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

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

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

.intro-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.services-preview {
    padding: 70px 0;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.card-content {
    padding: 25px;
}

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

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

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

.btn-card {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

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

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

.benefits-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
}

.benefits-image img {
    width: 100%;
    border-radius: 8px;
}

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

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

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.disclaimer-section {
    padding: 40px 0;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.6;
}

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

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

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
}

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

.about-intro {
    margin-bottom: 50px;
}

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

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

.about-mission-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    flex-wrap: wrap;
}

.mission-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #bdc3c7;
}

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

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

.mission-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.value-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 250px;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

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

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

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.cta-inline {
    text-align: center;
    padding: 50px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

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

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

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #666;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #bdc3c7;
}

.contact-page-content {
    padding: 50px 0;
}

.contact-info-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.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: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

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

.contact-additional-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 50px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .ad-disclosure {
        margin: 10px 0;
    }

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

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

    .service-card {
        width: 100%;
    }

    .benefits-layout {
        flex-direction: column;
    }

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

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