/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #F8F7F5;
}

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

/* Header Styles */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF6B6B;
}

.header-icon {
    width: 40px;
    height: 40px;
    background-color: #FF6B6B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background-color: #F8F7F5;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
}

.hero-text a {
    text-decoration: none;
}

.hero-btn {
    background-color: #4A90E2;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #357ABD;
}

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

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
}

.hero-speech-bubble {
    position: absolute;
    top: 20px;
    right: -50px;
    background-color: #E8D5FF;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: bold;
    color: #333333;
    font-size: 14px;
}

/* Decorative Elements */
.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background-color: #FF6B6B;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background-color: #4A90E2;
    top: 60%;
    right: 15%;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background-color: #FFB6C1;
    top: 30%;
    right: 30%;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #FFE4E1;
    border-radius: 15px 15px 0 0;
    padding: 30px 20px;
    position: relative;
    text-align: center;
}

.value-card:nth-child(2),
.value-card:nth-child(4) {
    background-color: #E8D5FF;
}

.value-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
}

.value-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 20px;
    color: #333333;
}

.value-abbreviation {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin: 20px 0 10px;
}

.value-title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.value-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background-color: #F8F7F5;
    position: relative;
}

.courses-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 60px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.course-image {
    width: 100%;
    height: 200px;
    background-color: #E0E0E0;
    position: relative;
}

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

.course-content {
    padding: 20px;
    background-color: #FFE4E1;
}

.course-title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.course-description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.course-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

.course-arrow {
    width: 40px;
    height: 40px;
    background-color: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.course-arrow:hover {
    background-color: #357ABD;
    color: #ffffff;
}

/* Story Cards */
.story-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid #E8D5FF;
}

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

.story-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.story-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.story-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.story-year {
    font-size: 16px;
    font-weight: bold;
    color: #4A90E2;
    background-color: #E8D5FF;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* Lesson Cards */
.lesson-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid #FFE4E1;
}

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

.lesson-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.lesson-title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 12px;
}

.lesson-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.lesson-duration {
    font-size: 14px;
    font-weight: bold;
    color: #FF6B6B;
    background-color: #FFE4E1;
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 60px;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #ffffff;
    font-size: 20px;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 14px;
    color: #666666;
}

.contact-form {
    flex: 1;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background-color: #F8F8F8;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-submit {
    background-color: #FF6B6B;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #E55A5A;
}

/* Footer Styles */
.footer {
    background-color: #2C3E50;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
}

.newsletter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.newsletter-text h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-input {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 14px;
    min-width: 250px;
}

.newsletter-btn {
    background-color: #FF6B6B;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #E55A5A;
}

.newsletter-decoration {
    position: absolute;
    left: -50px;
    top: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}

.footer-nav {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-copyright p {
    font-size: 14px;
    color: #CCCCCC;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .newsletter-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input {
        min-width: auto;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .values-title,
    .courses-title,
    .contact-title {
        font-size: 28px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C3E50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cookie-banner-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn-accept {
    background-color: #4A90E2;
    color: #ffffff;
}

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

.cookie-btn-decline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn-decline:hover {
    background-color: #ffffff;
    color: #2C3E50;
}

.cookie-btn-settings {
    background-color: transparent;
    color: #FF6B6B;
    border: 1px solid #FF6B6B;
}

.cookie-btn-settings:hover {
    background-color: #FF6B6B;
    color: #ffffff;
}

.cookie-settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10001;
    max-width: 500px;
    width: 90%;
    display: none;
}

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

.cookie-settings h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.cookie-setting-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
}

.cookie-setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-setting-title {
    font-weight: bold;
    font-size: 16px;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background-color: #E0E0E0;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-toggle.active {
    background-color: #4A90E2;
}

.cookie-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle.active .cookie-toggle-slider {
    transform: translateX(25px);
}

.cookie-setting-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

.cookie-settings-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
}

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

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .values-title,
    .courses-title,
    .contact-title {
        font-size: 24px;
    }
    
    .newsletter-text h2 {
        font-size: 20px;
    }
    
    .value-card,
    .course-card {
        padding: 20px 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-settings {
        padding: 20px;
    }
}
