* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-notice {
    background-color: #ffd700;
    color: #000;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
}

.main-nav {
    background-color: #34495e;
    padding: 1rem 0;
    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;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.hero-section {
    background-color: #2c3e50;
    color: #fff;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    background-color: #34495e;
}

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

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.intro-block {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
}

.container-wide {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.text-content h2 {
    font-size: 34px;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.text-content p {
    font-size: 18px;
    margin-bottom: 1rem;
    color: #555;
}

.image-text-split {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 4rem 2rem;
    gap: 3rem;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h3 {
    font-size: 28px;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 1rem;
    color: #555;
}

.courses-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.course-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.course-card h3 {
    font-size: 22px;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.course-card p {
    font-size: 16px;
    margin: 0 1.5rem 1rem;
    color: #555;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin: 1rem 1.5rem;
}

.select-course {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 1.5rem 1.5rem;
    border-radius: 4px;
}

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

.form-section {
    background-color: #34495e;
    padding: 5rem 2rem;
    color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 18px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.submit-button {
    width: 100%;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-us {
    background-color: #fff;
    padding: 5rem 2rem;
}

.why-us h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature p {
    font-size: 16px;
    color: #555;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 2rem;
}

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

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

.footer-section p {
    font-size: 15px;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #95a5a6;
    color: #fff;
}

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

.page-header {
    background-color: #34495e;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 0.5rem;
}

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

.about-story {
    background-color: #fff;
    padding: 5rem 2rem;
}

.story-content {
    margin-bottom: 2rem;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 1rem;
    color: #555;
}

.story-image {
    margin-top: 2rem;
    background-color: #bdc3c7;
}

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

.philosophy {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
}

.philosophy h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    color: #555;
}

.team-section {
    background-color: #fff;
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 2rem;
    color: #555;
}

.team-text {
    max-width: 800px;
    margin: 0 auto;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 1rem;
    color: #555;
}

.workshop-info {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-text {
    flex: 1;
    min-width: 300px;
}

.workshop-text h2 {
    font-size: 32px;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.workshop-text p {
    font-size: 17px;
    margin-bottom: 1rem;
    color: #555;
}

.workshop-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

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

.services-intro {
    background-color: #fff;
    padding: 4rem 2rem;
}

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

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 1rem;
    color: #555;
}

.services-detailed {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
}

.service-item {
    background-color: #fff;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

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

.service-details {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 1rem;
    color: #555;
}

.course-features {
    list-style: none;
    margin: 1.5rem 0;
}

.course-features li {
    font-size: 15px;
    padding: 0.5rem 0;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
}

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

.price-tag {
    font-size: 30px;
    font-weight: bold;
    color: #27ae60;
    margin: 1rem 0;
}

.booking-cta {
    background-color: #2c3e50;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.booking-cta h2 {
    font-size: 34px;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 18px;
    margin-bottom: 2rem;
}

.contact-section {
    background-color: #fff;
    padding: 5rem 2rem;
}

.contact-info-block {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

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

.info-item {
    margin-bottom: 2rem;
}

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

.info-item p {
    font-size: 17px;
    color: #555;
}

.contact-text {
    max-width: 800px;
    margin: 0 auto;
}

.contact-text h3 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-text p {
    font-size: 17px;
    margin-bottom: 1rem;
    color: #555;
}

.location-info {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

.location-info h2 {
    font-size: 32px;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.directions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.direction-item h4 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.direction-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.thanks-section {
    background-color: #fff;
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-container > p {
    font-size: 18px;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 17px;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 16px;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #555;
    position: relative;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.secondary-button {
    display: inline-block;
    background-color: #95a5a6;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.legal-page {
    background-color: #fff;
    padding: 4rem 2rem;
    min-height: 60vh;
}

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

.legal-page h2 {
    font-size: 24px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

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

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 14px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .courses-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

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