/* Base Styles */
:root {
    --primary-color: #66c2b2;
    --primary-dark: #54a99b;
    --primary-light: #e8f7f4;
    --secondary-color: #1a2942;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #ffffff;
    --off-white: #f9fafb;
    --light-gray: #f2f4f6;
    --gray: #e5e7eb;
    --dark-gray: #d1d5db;
    --black: #000000;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    --header-height: 80px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

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

.logo-icon {
    width: 2rem;
    height: 2rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.logo-text p {
    font-size: 0.75rem;
    margin-bottom: 0;
    color: var(--text-light);
}

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

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--primary-light);
    padding: 5rem 0;
    text-align: center;
}

.hero h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.hero p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Course Modules Section */
.course-modules {
    padding: 5rem 0;
    text-align: center;
}

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

.course-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.course-icon img {
    width: 2rem;
    height: 2rem;
}

.course-level {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.level {
    color: var(--primary-color);
    font-weight: 600;
}

.duration {
    color: var(--text-lighter);
}

.course-card h3 {
    margin-bottom: 1rem;
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.course-target {
    margin-top: auto;
    border-top: 1px solid var(--gray);
    padding-top: 1rem;
}

.course-target p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.course-target span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Methodology Section */
.methodology {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

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

.methodology-text h2 {
    margin-bottom: 1rem;
}

.methodology-text > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.methodology-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.list-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.list-icon img {
    width: 1.25rem;
    height: 1.25rem;
}

.methodology-list p {
    margin-bottom: 0;
}

.instructor-team {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.instructor-team h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.instructor {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.instructor:last-child {
    margin-bottom: 0;
}

.instructor-image {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.instructor-info h4 {
    margin-bottom: 0.25rem;
}

.instructor-info p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    text-align: center;
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: left;
    position: relative;
    border: 1px solid var(--gray);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    top: 1rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Blog Section */
.blog {
    background-color: var(--light-gray);
    padding: 5rem 0;
    text-align: center;
}

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

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    text-align: left;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-lighter);
    font-size: 0.875rem;
    border-top: 1px solid var(--gray);
    padding-top: 1rem;
}

.blog-meta p {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    text-align: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-info {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray);
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon img {
    width: 1.25rem;
    height: 1.25rem;
}

.info-text h4 {
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.info-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-info .btn {
    margin-top: 2rem;
    width: 100%;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    box-shadow: var(--shadow-md);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo .logo {
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.company-desc {
    opacity: 0.7;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Legal Content Pages */
.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    margin-bottom: 3rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h3 {
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-light);
}

/* Thank You Page */
.thank-you {
    padding: 6rem 0;
    text-align: center;
}

.thank-you h2 {
    margin-bottom: 2rem;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.confirmation {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.follow-up {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.outro {
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: 0;
        height: calc(100vh - var(--header-height));
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 99;
        box-shadow: var(--shadow-md);
    }
    
    .nav-active {
        transform: translateX(0);
    }
    
    .burger {
        display: block;
    }
    
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .toggle .line2 {
        opacity: 0;
    }
    
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .course-grid, 
    .testimonial-grid, 
    .blog-grid {
        grid-template-columns: 1fr;
    }
}