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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2E3A59;
    background-color: #F8F6F0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(74, 91, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 58, 89, 0.02) 0%, transparent 50%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #2E3A59;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #4A5B3A;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(46, 58, 89, 0.1);
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2E3A59;
    margin: 0;
}

.brand-name a {
    color: inherit;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(46, 58, 89, 0.05) 0%, rgba(74, 91, 58, 0.05) 100%);
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2E3A59;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4A5B3A;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4A5B3A;
    font-weight: 500;
}

.hero-icon {
    flex-shrink: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(46, 58, 89, 0.15);
    object-fit: cover;
}

/* Image Placeholders */
.content-image-placeholder,
.product-image-placeholder,
.feature-image-placeholder,
.contact-image-placeholder {
    background: rgba(74, 91, 58, 0.1);
    border: 2px dashed rgba(74, 91, 58, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A5B3A;
    font-style: italic;
    min-height: 250px;
    margin: 2rem 0;
}

/* Image Styles */
.content-image,
.product-image,
.feature-image,
.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(46, 58, 89, 0.1);
    object-fit: cover;
}

.feature-image {
    height: 200px;
    margin-bottom: 1.5rem;
}

.product-image {
    height: 200px;
    border-radius: 12px 12px 0 0;
}

.content-image {
    max-width: 500px;
    height: 300px;
}

.about-image {
    max-width: 400px;
    height: 250px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 4rem 0;
}

section.centered {
    text-align: center;
}

section.centered .container {
    text-align: center;
}

section.centered .section-content {
    text-align: left;
}

section:nth-child(even) {
    background: rgba(46, 58, 89, 0.02);
}

section h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2E3A59;
}

/* Introduction Section */
.introduction {
    padding: 3rem 0;
}

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

.intro-content h3 {
    margin-bottom: 2rem;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4A5B3A;
    font-weight: 500;
}

.feature-icon {
    flex-shrink: 0;
}

/* Core Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(46, 58, 89, 0.08);
    text-align: center;
    border: 1px solid rgba(74, 91, 58, 0.1);
}

.feature-card h4 {
    color: #2E3A59;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4A5B3A;
    margin: 0;
}

/* Section Content Layout */
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content {
    padding: 1rem;
}

.text-content h3 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.text-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.text-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4A5B3A;
}

.text-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2E3A59;
    font-weight: bold;
}

/* Masterclass Tracks */
.tracks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.track-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 8px;
    border-left: 4px solid #4A5B3A;
    box-shadow: 0 2px 10px rgba(46, 58, 89, 0.05);
}

.track-item h4 {
    color: #2E3A59;
    margin-bottom: 0.75rem;
}

.track-item p {
    color: #4A5B3A;
    margin: 0;
}

/* Workshop Features */
.workshop-features {
    margin-top: 2rem;
}

.workshop-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-number {
    background: #4A5B3A;
    color: #F8F6F0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.workshop-feature h5 {
    margin-bottom: 0.5rem;
    color: #2E3A59;
}

.workshop-feature p {
    margin: 0;
    color: #4A5B3A;
}

/* Products Section */
.products {
    background: #FFFFFF;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #F8F6F0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46, 58, 89, 0.08);
    border: 1px solid rgba(74, 91, 58, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.product-card h4 {
    padding: 0 1.5rem;
    margin: 1.5rem 0 1rem 0;
    color: #2E3A59;
}

.product-card p {
    padding: 0 1.5rem;
    color: #4A5B3A;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E3A59;
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.product-button {
    background: #4A5B3A;
    color: #F8F6F0;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0 0 12px 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: block;
    margin-top: auto;
}

.product-button:hover {
    background: #2E3A59;
    color: #F8F6F0;
}

/* Educator Resources */
.resource-list {
    margin-top: 2rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(46, 58, 89, 0.05);
}

.resource-icon {
    flex-shrink: 0;
}

.resource-item span {
    color: #2E3A59;
    font-weight: 500;
}

/* Translation Services */
.service-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2E3A59;
    box-shadow: 0 2px 15px rgba(46, 58, 89, 0.08);
}

.service-item h4 {
    color: #2E3A59;
    margin-bottom: 1rem;
}

.service-item p {
    color: #4A5B3A;
    margin: 0;
}

/* Contacts */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #2E3A59;
}

.contact-item p {
    margin: 0;
    color: #4A5B3A;
}

.contact-item a {
    color: #4A5B3A;
    font-weight: 500;
}

.contact-item a:hover {
    color: #2E3A59;
}

/* Footer */
.footer {
    background: #2E3A59;
    color: #F8F6F0;
    padding: 3rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    filter: brightness(1.2);
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 500;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #F8F6F0;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #F8F6F0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: #F8F6F0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact-info a {
    color: #F8F6F0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-contact-info a:hover {
    opacity: 1;
    color: #F8F6F0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 246, 240, 0.2);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(46, 58, 89, 0.95);
    backdrop-filter: blur(10px);
    color: #F8F6F0;
    padding: 2rem 0;
    z-index: 1000;
    border-top: 1px solid rgba(248, 246, 240, 0.2);
    box-shadow: 0 -4px 20px rgba(46, 58, 89, 0.3);
}

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

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

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

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #F8F6F0;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #4A5B3A;
    color: #F8F6F0;
}

.cookie-btn.accept:hover {
    background: #3A4B2A;
}

.cookie-btn.reject {
    background: #8B4B4B;
    color: #F8F6F0;
}

.cookie-btn.reject:hover {
    background: #7A3B3B;
}

.cookie-btn.customize {
    background: transparent;
    color: #F8F6F0;
    border: 1px solid rgba(248, 246, 240, 0.3);
}

.cookie-btn.customize:hover {
    background: rgba(248, 246, 240, 0.1);
}

.cookie-btn.save {
    background: #4A5B3A;
    color: #F8F6F0;
}

.cookie-btn.save:hover {
    background: #3A4B2A;
}

.cookie-btn.cancel {
    background: transparent;
    color: #F8F6F0;
    border: 1px solid rgba(248, 246, 240, 0.3);
}

.cookie-btn.cancel:hover {
    background: rgba(248, 246, 240, 0.1);
}

.cookie-link {
    color: #F8F6F0;
    text-decoration: underline;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.cookie-link:hover {
    opacity: 1;
    color: #F8F6F0;
}

/* Cookie Customization */
.cookie-customization {
    max-width: 1200px;
    margin: 1.5rem auto 0 auto;
    padding: 0 2rem;
    border-top: 1px solid rgba(248, 246, 240, 0.2);
    padding-top: 1.5rem;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: rgba(248, 246, 240, 0.05);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(248, 246, 240, 0.1);
}

.cookie-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.cookie-category-name {
    font-weight: 600;
    color: #F8F6F0;
    font-size: 0.95rem;
}

.cookie-category-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .section-content,
    .tracks-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-image-placeholder,
    .contact-image-placeholder {
        order: -1;
        margin: 0 0 2rem 0;
        min-height: 200px;
    }
    
    .intro-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-features {
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cookie-content {
        padding: 0 1.5rem;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-features {
        align-items: center;
    }
}