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

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

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

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

a {
    text-decoration: none;
    color: #1a64d6;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #0e1b4d;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

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

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background-color: #e91e63;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #c2185b;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

section {
    padding: 4rem 0;
}

/* Header */
header {
    background-color: #1a64d6;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    font-weight: 500;
}

nav ul li a:hover {
    opacity: 0.8;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: white;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-image {
    flex: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    background-color: white;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 20px 0;
}

.value-icon {
    margin-bottom: 15px;
}

.value-icon img {
    width: 60px;
    height: auto;
}

/* More Than Course Section */
.more-than-course {
    background-color: #f8f9fa;
}

.course-content {
    display: flex;
    gap: 40px;
}

.course-text, .course-features {
    flex: 1;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
}

.feature-check {
    color: #4caf50;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.testimonial-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

/* Why MentoraX Section */
.why-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-image {
    flex: 1;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form-wrapper {
    flex: 1;
}

.contact-image {
    margin-top: 30px;
}

.contact-image img {
    border-radius: 8px;
}

address {
    font-style: normal;
    margin-bottom: 20px;
}

address p {
    margin-bottom: 10px;
}

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

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1a64d6;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links a {
    color: white;
    margin-left: 20px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 0;
    z-index: 1001;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content, .course-content, .why-content, .contact-content {
        flex-direction: column;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a64d6;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .main-section h1 {
        word-break: break-all;
    }
}

html {
    scroll-behavior: smooth;
}

.main-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

.thank-section {
    text-align: center;
    padding: 10rem 0;
}