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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

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

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.hero-card {
    position: relative;
    margin-bottom: 80px;
    overflow: hidden;
    border-radius: 0;
}

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

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 8px;
    max-width: 700px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text-overlay p {
    font-size: 20px;
    line-height: 1.6;
}

.intro-card-block {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

.services-grid-section {
    padding: 80px 0;
}

.section-heading-offset {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: left;
}

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

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

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

.card-image-box {
    height: 250px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

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

.card-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

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

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

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

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

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

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

.form-card-wrapper p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

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

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

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

.why-us-asymmetric {
    padding: 80px 0;
}

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

.text-block-wide {
    flex: 1.3;
}

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

.text-block-wide p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.image-block-offset {
    flex: 0.7;
}

.image-block-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonials-minimal {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.testimonial-block {
    background-color: #ffffff;
    padding: 35px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
    border-radius: 5px;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

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

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-header-simple {
    padding: 60px 0 40px;
    background-color: #ecf0f1;
}

.page-header-simple h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.header-subtitle {
    font-size: 18px;
    color: #555;
}

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

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

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

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

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

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

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.value-block {
    margin-bottom: 40px;
}

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

.value-block p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.cta-section-offset {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.cta-card {
    background-color: #3498db;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

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

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

.btn-cta-main {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-cta-main:hover {
    background-color: #ecf0f1;
    color: #2980b9;
}

.services-detail-section {
    padding: 60px 0;
}

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

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-content {
    flex: 1;
}

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

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 16px;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.location-info p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

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

.thanks-content {
    text-align: center;
}

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

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

.confirmation-details {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #555;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

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

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

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

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

    .asymmetric-layout,
    .team-layout,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}