* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc04;
    --dark-color: #202124;
    --light-color: #f8f9fa;
    --border-color: #dadce0;
    --text-color: #3c4043;
    --success-color: #34a853;
    --danger-color: #d33b27;
    --warning-color: #fbbc04;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1a5dbf;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #2d8e47;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(52, 168, 83, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-course {
    width: 100%;
    margin-top: 1.5rem;
}

.cta-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #2d8e47;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.logo p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .cta-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    color: white;
    padding: 80px 0;
}

.hero .container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Courses Section */
.courses {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.course-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 2rem;
}

.course-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.course-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

.course-price {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.price-old {
    text-decoration: line-through;
    color: #999;
}

.price-new {
    color: var(--danger-color);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #f0fff0 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.benefit-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-color);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member .bio {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-member .quote {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    font-style: italic;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-color);
}

.testimonial .stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
}

.testimonial-author h4 {
    margin: 0 0 0.25rem 0;
}

.testimonial-author p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.contact-item h4 {
    margin: 0 0 0.5rem 0;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0 0 0 0.5rem;
}

.map-container {
    margin-top: 3rem;
}

.map-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-container iframe {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1000px;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.cookie-consent.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.footer-disclaimer strong {
    color: rgba(255,255,255,0.95);
}

.disclaimer {
    font-size: 0.85rem;
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    font-style: italic;
    opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .courses-grid,
    .about-grid,
    .benefits-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* New Pages Styles */

/* Content Section */
.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.content-text h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-text ul li {
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-box {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.sidebar-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.sidebar-box p {
    margin-bottom: 12px;
    color: var(--text-color);
}

.sidebar-box ul {
    list-style: none;
    margin: 0;
}

.sidebar-box ul li {
    margin-bottom: 8px;
}

.sidebar-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.sidebar-box a:hover {
    text-decoration: underline;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    margin: 40px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 75px;
    top: 50px;
    width: 2px;
    height: calc(100% + 40px);
    background-color: var(--border-color);
}

.timeline-item:last-child:before {
    display: none;
}

.timeline-date {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--dark-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-box {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Values Section */
.values-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid var(--accent-color);
}

.value h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat {
    background: linear-gradient(135deg, var(--primary-color), #357ae8);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.partner {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Courses Full Grid */
.courses-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.course-card-full {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.course-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.featured-course {
    border: 2px solid var(--primary-color);
    position: relative;
}

.course-card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.level-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.level-badge.level-intermediate {
    background-color: var(--secondary-color);
    color: white;
}

.level-badge.level-pro {
    background-color: var(--primary-color);
    color: white;
}

.featured-badge-large {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

.course-card-body {
    padding: 30px;
}

.course-card-body h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.course-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.course-description {
    margin-bottom: 20px;
}

.course-description h4 {
    margin: 15px 0 10px 0;
    color: var(--dark-color);
}

.course-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.course-info-item {
    display: flex;
    flex-direction: column;
}

.course-info-item .label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.course-info-item .value {
    color: var(--primary-color);
    font-weight: 600;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.price-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Course Benefits */
.course-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.benefit h3 {
    color: var(--dark-color);
    margin-bottom: 12px;
}

/* Team Members Full */
.team-members-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
}

.team-member-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    align-items: start;
    border: 1px solid var(--border-color);
}

.team-member-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.member-info h3 {
    color: var(--dark-color);
    margin: 0 0 8px 0;
}

.member-info .role {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.member-details {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
}

.detail-item {
    display: grid;
    grid-template-columns: 150px 1fr;
}

.detail-item .label {
    font-weight: 600;
    color: var(--dark-color);
}

.detail-item .value {
    color: var(--text-color);
}

.bio {
    margin: 15px 0;
    line-height: 1.8;
}

.achievements {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.achievements h4 {
    margin-top: 0;
    color: var(--dark-color);
}

.achievements ul {
    margin-left: 20px;
}

.achievements li {
    margin-bottom: 8px;
}

blockquote {
    background-color: white;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0 0 0;
    border-radius: 4px;
    font-style: italic;
    color: var(--text-color);
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.why-item {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.why-item h3 {
    color: var(--dark-color);
    margin-bottom: 12px;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 40px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #f5f5f5;
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, #34a853, #1e8e3e);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.guarantee-box h3 {
    color: white;
    margin-bottom: 15px;
}

.guarantee-box p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 15px;
}

.guarantee-box strong {
    font-weight: 700;
}

.guarantee-box ul {
    list-style: none;
    margin: 15px 0;
}

.guarantee-box ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.guarantee-box ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.story {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.story h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.story p {
    margin-bottom: 20px;
    font-style: italic;
}

.results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result {
    background-color: white;
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Wrapper */
.contact-wrapper-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-section h2 {
    grid-column: 1 / -1;
}

.contact-item-full {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 25px;
    background-color: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-icon {
    font-size: 2.5rem;
    text-align: center;
}

.contact-content h3 {
    color: var(--dark-color);
    margin-top: 0;
}

.contact-content p {
    margin-bottom: 12px;
}

.contact-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-content a:hover {
    text-decoration: underline;
}

.contact-content .hint {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 10px;
}

.working-hours {
    width: 100%;
    background-color: white;
    margin: 15px 0;
}

.working-hours tr td {
    padding: 8px 0;
}

.working-hours tr td:first-child {
    font-weight: 600;
    padding-right: 15px;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 15px;
}

.form-group.checkbox input {
    margin-top: 5px;
}

.form-group.checkbox label {
    margin: 0;
}

.form-group.checkbox a {
    color: var(--primary-color);
}

/* Map Section */
.map-section {
    margin: 60px 0;
}

.map-section h2 {
    margin-bottom: 25px;
}

.map-section iframe {
    border-radius: 10px;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    border-top: 3px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--dark-color);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-color);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), #357ae8);
    color: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin: 60px 0;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 12px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 15px;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    flex-shrink: 0;
}

.newsletter-hint {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--light-color);
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0 0 0;
}

.cta-section h2 {
    color: var(--dark-color);
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Cookie Types Grid */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.cookie-type {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.cookie-type h3 {
    color: var(--dark-color);
    margin-bottom: 12px;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.cookies-table thead {
    background-color: var(--primary-color);
    color: white;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Cookie Preferences */
.cookie-preferences {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.preference-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    cursor: pointer;
    align-items: center;
}

.checkbox-label input {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.checkbox-label small {
    display: block;
    color: #999;
    font-size: 0.9rem;
}

/* Benefits Detailed */
.benefits-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-card.detailed {
    border-left: 4px solid var(--accent-color);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.benefit-icon.large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-card ul {
    margin-left: 20px;
}

.benefit-card li {
    margin-bottom: 10px;
}

/* Contact Info Box */
.contact-info-box {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.contact-info-box p {
    margin-bottom: 12px;
}

.link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

/* Hero Sections for Pages */
.hero-about,
.hero-courses,
.hero-benefits,
.hero-team,
.hero-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-color), #f0f5ff);
}

.hero-about,
.hero-courses,
.hero-benefits,
.hero-team,
.hero-contact {
    display: flex;
    align-items: center;
}

.hero-about .container,
.hero-courses .container,
.hero-benefits .container,
.hero-team .container,
.hero-contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-about .hero-content,
.hero-courses .hero-content,
.hero-benefits .hero-content,
.hero-team .hero-content,
.hero-contact .hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-about .hero-image,
.hero-courses .hero-image,
.hero-benefits .hero-image,
.hero-team .hero-image,
.hero-contact .hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Thank You Section */
.thank-you-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    text-align: center;
}

.thank-you-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.thank-you-icon-large {
    display: inline-block;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 20px;
}

.thank-you-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.thank-you-lead {
    font-size: 1.3rem;
    opacity: 0.95;
    margin: 0;
}

/* Thank You Content */
.thank-you-content {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.thank-you-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Left Column */
.thank-you-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-text h4 {
    margin: 0 0 8px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.step-text p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.85;
    font-size: 0.95rem;
}

.contact-reminder {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-reminder h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 0;
}

.contact-items-short {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-short {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-short strong {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.contact-short a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-short a:hover {
    text-decoration: underline;
}

/* Right Column */
.thank-you-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bonus-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary-color);
    text-align: center;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0;
}

.bonus-card p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-list li {
    padding: 12px 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.bonus-list li:last-child {
    border-bottom: none;
}

.bonus-list li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 10px;
}

.faq-thank {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-thank h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 0;
}

.faq-thank-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-thank-item:last-child {
    border-bottom: none;
}

.faq-thank-item h4 {
    margin: 0 0 8px 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-thank-item p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.85;
    font-size: 0.95rem;
}

/* CTA Buttons */
.thank-you-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.thank-you-buttons .btn {
    min-width: 250px;
}

/* Responsive Thank You */
@media (max-width: 1024px) {
    .thank-you-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .thank-you-hero {
        padding: 50px 0;
    }

    .thank-you-hero h1 {
        font-size: 2rem;
    }

    .thank-you-lead {
        font-size: 1.1rem;
    }

    .thank-you-content {
        padding: 50px 0;
    }

    .thank-you-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-buttons {
        flex-direction: column;
    }

    .thank-you-buttons .btn {
        width: 100%;
    }

    .bonus-card {
        padding: 25px;
    }

    .faq-thank {
        padding: 20px;
    }
}

/* Responsive for Content Wrapper */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .team-member-card {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper-full {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
