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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-logo span {
    font-size: 24px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #2c5aa0;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #2c5aa0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    min-height: 90vh;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.feature-icon {
    font-size: 1.5rem;
    filter: brightness(0) saturate(100%) invert(20%) sepia(85%) saturate(1654%) hue-rotate(201deg) brightness(92%) contrast(89%);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: #2c5aa0;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.2);
}

.btn-primary:hover {
    background: #1e3f73;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.25);
}

.btn-secondary {
    background: #28a745;
    color: white;
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

.btn-secondary:hover {
    background: #218838;
    color: white;
    border-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-outline {
    background: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
    padding: 12px 24px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(44, 90, 160, 0.08);
}

.btn-outline:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.25);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Course Button Containers */
.course-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}

.ozel-ders-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Course Button Variations */
.course-btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.course-btn-small {
    flex: 1;
    min-width: 150px;
    padding: 12px 16px;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design for Course Buttons */
@media (max-width: 768px) {

    .course-buttons,
    .ozel-ders-buttons {
        flex-direction: column;
        width: 100%;
    }

    .course-btn,
    .course-btn-small {
        width: 100%;
        min-width: auto;
        margin-bottom: 10px;
    }
}

/* Course Preview Section */
.courses-preview {
    padding: 100px 20px;
    background: #f8fafc;
}

.courses-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
}

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

.course-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
    border-color: rgba(44, 90, 160, 0.1);
}

.course-card h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.course-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid #2c5aa0;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.12);
    background: #ffffff;
}

.testimonial-quote {
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info strong {
    color: #2c5aa0;
    font-size: 1.1rem;
    display: block;
}

.author-info span {
    color: #777;
    font-size: 0.9rem;
    display: block;
    margin-top: 3px;
}

.testimonials-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc, #e3f2fd);
    border-radius: 20px;
    border: 2px solid #e0e0e0;
}

.testimonials-cta h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: #2c5aa0;
}

.cta-section .btn-primary:hover {
    background: #f0f8ff;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-section h4 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
    transform: translateX(5px);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-icon {
    filter: brightness(0) invert(1);
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(44, 90, 160, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44, 90, 160, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-intro {
    position: relative;
    z-index: 1;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.about-intro .key-quote {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5aa0;
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.08) 0%, rgba(44, 90, 160, 0.12) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #2c5aa0;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.1);
}

.about-intro .key-quote::before {
    content: '"';
    font-size: 3rem;
    color: #2c5aa0;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.about-intro .key-quote::after {
    content: '"';
    font-size: 3rem;
    color: #2c5aa0;
    opacity: 0.3;
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-family: serif;
}

/* Vision & Mission */
.vision-mission {
    padding: 80px 20px;
    background: #f8fafc;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.vm-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 30px;
}

.vm-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
    text-align: left;
}

/* Founder's Note */
.founder-note {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    position: relative;
    overflow: hidden;
}

.founder-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.founder-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 30px;
}

.quote-mark {
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -20px;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.founder-quote {
    font-size: 1.5rem !important;
    font-style: italic;
    color: #2c5aa0 !important;
    font-weight: 700;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
    border-radius: 15px;
    border: 2px solid #2c5aa0;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
    position: relative;
}

.founder-quote::before {
    content: '"';
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.founder-quote::after {
    content: '"';
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.2;
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-family: serif;
}

.founder-signature {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #2c5aa0 !important;
    text-align: left;
    margin-top: 30px;
}

.founder-image {
    text-align: center;
}

.founder-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.3);
}

.founder-initial {
    font-size: 4rem;
}

/* Values Section */
.values-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .courses-preview h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-intro h2,
    .values-section h2,
    .founder-text h2 {
        font-size: 2rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 30px 20px;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-signature {
        text-align: center !important;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Course Introduction */
.course-intro {
    padding: 60px 20px;
    background: #f8fafc;
    text-align: center;
}

.course-intro-text {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Course Sections */
.course-section {
    padding: 100px 20px;
    background: white;
}

.course-section.course-alt {
    background: #f8fafc;
}

.course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.course-badge {
    font-size: 3rem;
    margin-bottom: 20px;
}

.course-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 25px;
    line-height: 1.3;
}

.course-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.course-features {
    margin-bottom: 40px;
}

.course-section .btn {
    min-width: 300px;
    padding: 15px 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.feature-icon {
    font-size: 1.3rem;
    min-width: 30px;
}

.course-image {
    text-align: center;
}

.course-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.2);
}

.placeholder-icon {
    width: 120px;
    height: 120px;
}

.course-placeholder .placeholder-icon {
    filter: brightness(0) invert(1);
}

/* Course Benefits */
.course-benefits {
    padding: 100px 20px;
    background: white;
}

.course-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Info */
.pricing-info {
    padding: 100px 20px;
    background: #f8fafc;
}

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

.pricing-content h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 30px;
}

.pricing-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #555;
}

.pricing-icon {
    font-size: 1.5rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Courses */
@media (max-width: 768px) {
    .course-intro-text {
        font-size: 1.1rem;
    }

    .course-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .course-section h2 {
        font-size: 2rem;
    }

    .course-placeholder {
        width: 250px;
        height: 250px;
    }

    .placeholder-icon {
        width: 80px;
        height: 80px;
    }

    .course-benefits h2,
    .pricing-content h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Enrollment Steps */
.enrollment-steps {
    padding: 80px 20px;
    background: #f8fafc;
}

.enrollment-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.steps-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

.step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.15);
    border-color: rgba(44, 90, 160, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* What We Offer */
.what-we-offer {
    padding: 80px 20px;
    background: white;
}

.what-we-offer h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 1.1rem;
    color: #555;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.offer-item:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.12);
    border-color: rgba(44, 90, 160, 0.1);
}

.offer-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

/* Registration Form */
.registration-form {
    padding: 100px 20px;
    background: #f8fafc;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.form-header p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.enrollment-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1), 0 4px 12px rgba(44, 90, 160, 0.15);
    transform: translateY(-2px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
}

.form-checkbox label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.form-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-benefits h3 {
    color: #2c5aa0;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.form-benefits ul {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    line-height: 1.5;
}

.form-benefits li:last-child {
    border-bottom: none;
}

/* Quick Contact */
.quick-contact {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.quick-contact h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.quick-contact p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: #f8fafc;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-option:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-option div {
    text-align: left;
}

.contact-option strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-option span:last-child {
    color: #666;
    font-size: 0.95rem;
}

.contact-option:hover span:last-child {
    color: #fff;
    opacity: 0.9;
}

/* Responsive Design for Enrollment */
@media (max-width: 768px) {

    .enrollment-steps h2,
    .what-we-offer h2,
    .form-header h2,
    .quick-contact h2 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .enrollment-form,
    .form-benefits {
        padding: 30px 20px;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-option {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

/* Blog Styles */
.blog-posts {
    padding: 80px 20px;
    background: #f8fafc;
}

.blog-article {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    overflow: hidden;
}

.article-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.article-image {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-placeholder {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-placeholder .placeholder-icon {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.placeholder-emoji {
    font-size: 4rem;
    display: block;
    line-height: 1;
}

.article-meta {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta h2 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-info {
    display: flex;
    gap: 30px;
    color: #666;
    font-size: 0.95rem;
}

.article-content {
    padding: 0 40px 40px;
}

.article-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
    padding-top: 20px;
}

.strategy-list {
    margin-bottom: 40px;
}

.strategy-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 5px solid #2c5aa0;
}

.strategy-number {
    width: 40px;
    height: 40px;
    background: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.strategy-content h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.strategy-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.bonus-tip {
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.bonus-tip h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.bonus-tip ul {
    list-style: none;
    padding: 0;
}

.bonus-tip li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.bonus-tip li:before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 8px;
}

.article-cta {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.article-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.blog-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    text-align: center;
}

.blog-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blog-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.blog-cta .btn-primary {
    background: white;
    color: #2c5aa0;
}

.blog-cta .btn-primary:hover {
    background: #f0f8ff;
}

.blog-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.blog-cta .btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .article-header {
        grid-template-columns: 1fr;
    }

    .article-image {
        padding: 40px 20px;
    }

    .article-placeholder {
        width: 120px;
        height: 120px;
    }

    .article-placeholder .placeholder-icon {
        width: 60px;
        height: 60px;
    }

    .article-meta {
        padding: 30px 20px;
        text-align: center;
    }

    .article-meta h2 {
        font-size: 1.7rem;
    }

    .article-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .article-content {
        padding: 0 20px 30px;
    }

    .strategy-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .strategy-number {
        margin: 0 auto;
    }

    .blog-cta h2 {
        font-size: 2rem;
    }
}

/* FAQ Styles */
.faq-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.faq-intro {
    text-align: center;
    margin-bottom: 60px;
}

.faq-intro h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.faq-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.15);
    transform: translateY(-3px);
    border-color: rgba(44, 90, 160, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #2c5aa0;
    font-weight: 700;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8ff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #2c5aa0;
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.faq-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    text-align: center;
}

.faq-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.faq-cta .btn-primary {
    background: white;
    color: #2c5aa0;
}

.faq-cta .btn-primary:hover {
    background: #f0f8ff;
}

.faq-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.faq-cta .btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {

    .faq-intro h2,
    .faq-cta h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .faq-question h3 {
        padding-right: 0;
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Contact Styles */
.contact-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    flex-shrink: 0;
    text-align: center;
}

.contact-details h4 {
    color: #2c5aa0;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #333;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-details a {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details small {
    color: #777;
    font-size: 0.9rem;
}

.working-hours {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
}

.working-hours h4 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    color: #555;
}

.hour-item span:last-child {
    color: #2c5aa0;
    font-weight: 600;
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-form-section>p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.contact-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0 30px 0;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.contact-form .form-checkbox input[type="checkbox"] {
    margin: 0;
    margin-top: 3px;
    transform: scale(1.2);
    accent-color: #2c5aa0;
    flex-shrink: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.contact-form .form-checkbox label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
    flex: 1;
    cursor: pointer;
}

.contact-form .btn {
    display: block;
    width: 100%;
    max-width: 500px;
    margin-top: 15px;
}

/* Quick Actions */
.quick-actions {
    padding: 100px 20px;
    background: white;
}

.quick-actions h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
}

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

.action-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.action-card:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.3);
    border-color: rgba(44, 90, 160, 0.2);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.action-card h3 {
    color: inherit;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.action-card p {
    color: inherit;
    opacity: 0.8;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 40px;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {

    .contact-intro h2,
    .quick-actions h2,
    .map-section h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info,
    .contact-form-section {
        padding: 30px 20px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        padding: 40px 20px;
    }
}

/* Card Enhancements */
.card {
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) padding-box, linear-gradient(135deg, #2c5aa0, #1e325d) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2c5aa0;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge.popular {
    background: #ff9800;
}

.badge.new {
    background: #4caf50;
}