/* Base Styles */
:root {
    --primary-color: #e27350;
    --secondary-color: #fff;
    --dark-blue: #2e3a4d;
    --light-green: #e4f1ed;
    --light-gray: #f6f6f6;
    --text-color: #444;
    --heading-color: #2e3a4d;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
}

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

body {
    font-family: 'Arial', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-info,
.btn-reserve {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #d0664a;
}

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

.btn-secondary:hover {
    background-color: rgba(226, 115, 80, 0.1);
}

.btn-info {
    background-color: var(--light-green);
    color: var(--dark-blue);
    width: 100%;
}

.btn-info:hover {
    background-color: #d5e9e3;
}

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

.btn-reserve:hover {
    background-color: #d0664a;
}

/* Header */
header {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    padding: 5px;
    color: var(--heading-color);
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.hero h2 {
    font-size: 40px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background-color: white;
}

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

.course-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.course-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.course-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.course-duration {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Webinars Section */
.webinars {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.webinar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.webinar-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.webinar-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.webinar-info {
    flex-grow: 1;
}

.webinar-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.webinar-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text ul {
    margin-top: 30px;
}

.about-text ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.about-text ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-subtitle {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.testimonial-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
}

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

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

.contact-form h3,
.contact-info h3 {
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

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

.contact-info {
    background-color: var(--light-green);
    padding: 30px;
    border-radius: var(--border-radius);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 20px;
}

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

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 100px 20px;
    background-color: white;
}

.thank-you h2 {
    margin-bottom: 20px;
}

.thank-you .btn-primary {
    margin-top: 30px;
}

/* Media Queries */
@media (max-width: 1024px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        margin: 20px 0;
    }
    
    .hero h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .webinar-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .webinar-dot {
        display: none;
    }
    
    .btn-reserve {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 28px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .courses, .webinars, .about, .testimonials, .contact {
        padding: 60px 0;
    }

    .mobile {
        display: none;
    }
}

/* Icons (simple CSS implementation) */
.icon-location:before {
    content: "📍";
}

.icon-email:before {
    content: "✉️";
}

.icon-phone:before {
    content: "📞";
}