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

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

.main-nav {
    background-color: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

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

.hero-section {
    display: flex;
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #5a67d8;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a1a2e;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #495057;
    line-height: 1.8;
}

.intro-image {
    flex: 0.8;
    background-color: #e9ecef;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.styles-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.styles-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: #1a1a2e;
}

.styles-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.style-card {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.style-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #dee2e6;
}

.style-card h3 {
    padding: 25px 20px 10px;
    font-size: 1.5rem;
    color: #1a1a2e;
}

.style-card p {
    padding: 0 20px 25px;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.cta-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    color: #ffffff;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #f5576c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.courses-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.courses-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.courses-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.course-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.course-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.course-header h3 {
    font-size: 1.7rem;
    color: #1a1a2e;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.course-item p {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.select-course {
    padding: 12px 30px;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-course:hover {
    background-color: #5a67d8;
    transform: translateY(-2px);
}

.form-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a2e;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.why-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.why-content {
    max-width: 1100px;
    margin: 0 auto;
}

.why-content h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.why-item {
    flex: 1;
    min-width: 240px;
}

.why-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.why-item p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

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

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

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

.footer-column h4 {
    margin-bottom: 18px;
    font-size: 1.2rem;
    color: #f39c12;
}

.footer-column p,
.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: #e9ecef;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #495057;
    color: #adb5bd;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

.page-header p {
    font-size: 1.3rem;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #495057;
    line-height: 1.8;
}

.story-image {
    flex: 0.7;
    background-color: #e9ecef;
}

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

.vision-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.vision-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.vision-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.vision-block {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.vision-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #667eea;
}

.vision-block p {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.7;
}

.team-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro p {
    font-size: 1.15rem;
    color: #495057;
    line-height: 1.8;
}

.team-image {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e9ecef;
}

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

.values-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.values-content {
    max-width: 1100px;
    margin: 0 auto;
}

.values-content h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-item {
    flex: 1;
    min-width: 240px;
    background-color: rgba(255,255,255,0.8);
    padding: 30px;
    border-radius: 10px;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.value-item p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
}

.location-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.location-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #495057;
    line-height: 1.8;
}

.location-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.cta-about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.services-intro {
    padding: 60px 20px;
    background-color: #ffffff;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content p {
    font-size: 1.15rem;
    color: #495057;
    line-height: 1.8;
}

.services-detailed {
    padding: 40px 20px 100px;
    background-color: #f8f9fa;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

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

.service-visual {
    flex: 1;
    background-color: #e9ecef;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-info {
    flex: 1;
    padding: 50px;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #495057;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1rem;
    color: #6c757d;
}

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

.schedule-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

.schedule-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

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

.schedule-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
    text-align: center;
}

.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.6rem;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #667eea;
}

.contact-block p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
}

.contact-visual {
    flex: 0.8;
    background-color: #e9ecef;
}

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

.visit-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.visit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.visit-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.directions-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.directions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.direction-item {
    flex: 1;
    min-width: 260px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.direction-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #667eea;
}

.direction-item p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    text-align: center;
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #495057;
    line-height: 1.7;
}

.thanks-details {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
}

.thanks-info {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a2e;
    text-align: center;
}

.thanks-info ul {
    list-style: none;
    padding: 0;
}

.thanks-info li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.6;
}

.thanks-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    border: 2px solid #667eea;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #667eea;
    color: #ffffff;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #667eea;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #495057;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #6c757d;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.7;
}

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

.legal-container li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.7;
}

.legal-container a {
    color: #667eea;
    text-decoration: none;
}

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .intro-wrapper,
    .story-content,
    .location-wrapper,
    .contact-wrapper {
        flex-direction: column;
    }

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

    .service-visual img {
        min-height: 300px;
    }

    .nav-links {
        gap: 20px;
        font-size: 0.95rem;
    }

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

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