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

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

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

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

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

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

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

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

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

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #546e7a;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    background-color: #2980b9;
}

.cta-button.secondary {
    background-color: #2c3e50;
}

.cta-button.secondary:hover {
    background-color: #1a252f;
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
    max-width: 900px;
}

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

.courses-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a252f;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 50px;
}

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

.course-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.card-content p {
    color: #546e7a;
    margin-bottom: 20px;
    flex: 1;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    margin-bottom: 15px;
}

.duration {
    font-size: 14px;
    color: #7f8c8d;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

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

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

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

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

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.approach-text p {
    margin-bottom: 20px;
    color: #546e7a;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #546e7a;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

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

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

.testimonial-card p {
    font-style: italic;
    color: #546e7a;
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-style: normal;
    color: #2c3e50;
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #7f8c8d;
    cursor: pointer;
}

.close-modal:hover {
    color: #2c3e50;
}

.modal-content h2 {
    margin-bottom: 30px;
    color: #1a252f;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f8f9fa;
}

.submit-button {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #2980b9;
}

.main-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.email-text {
    word-break: break-all;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

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

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

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

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

.about-content,
.services-intro,
.contact-content {
    padding: 80px 0;
}

.content-layout {
    margin-bottom: 60px;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.content-text p {
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.8;
}

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

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

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

.value-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

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

.value-card p {
    color: #546e7a;
}

.team-section {
    margin: 80px 0;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a252f;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 50px;
}

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

.team-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
}

.team-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a252f;
}

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    color: #546e7a;
}

.location-section {
    margin: 80px 0;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.location-text {
    flex: 1;
}

.location-text p {
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.8;
}

.location-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.services-listing {
    padding: 40px 0 80px;
}

.course-card.detailed {
    flex: 1 1 calc(50% - 15px);
}

.course-card.detailed h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a252f;
}

.course-card.detailed h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.course-card.detailed ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.course-card.detailed ul li {
    margin-bottom: 8px;
    color: #546e7a;
}

.card-meta {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.card-meta p {
    margin-bottom: 5px;
    color: #2c3e50;
}

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

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.faq-item p {
    color: #546e7a;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

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

.info-item p {
    color: #546e7a;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 600px;
}

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

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

.visit-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.visit-section p {
    color: #546e7a;
    margin-bottom: 15px;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.info-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.info-card p {
    color: #546e7a;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 10px;
    color: #2c3e50;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a252f;
}

.step-content p {
    color: #546e7a;
}

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

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-intro {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
}

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

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

.legal-page p {
    margin-bottom: 15px;
    color: #546e7a;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 10px;
    color: #546e7a;
    line-height: 1.8;
}

.cookie-table {
    margin: 30px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

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

.cookie-table td {
    color: #546e7a;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 20px;
    }

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

    .nav-links {
        gap: 20px;
    }

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

    .approach-layout,
    .location-layout,
    .contact-layout {
        flex-direction: column;
    }

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

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

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