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

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

/* Header */
.header {
    background: #2c5f6f;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-container {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 40px;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5f6f;
    text-decoration: none;
    letter-spacing: 2px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #b8860b;
}

.search-icon {
    font-size: 18px;
    color: #333;
}

/* Main Content */
.main-content {
    margin-top: 100px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #c8a882;
    clip-path: polygon(0 0, 70% 0, 50% 100%, 0 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-text h1 {
    font-size: 48px;
    color: #2c5f6f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #b8860b;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.btn:hover {
    background: #9a7209;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 36px;
    color: #b8860b;
    margin-bottom: 30px;
    font-style: italic;
}

.two-column {
    display: flex;
    gap: 50px;
    align-items: center;
}

.column {
    flex: 1;
}

.column img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

/* Featured Section */
.featured {
    background: #f9f9f9;
    text-align: center;
}

.featured-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.featured-logos img {
    max-height: 60px;
    width: auto;
    opacity: 0.7;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #c8a882 0%, #b8860b 100%);
    color: white;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

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

/* Footer */
.footer {
    background: #2c5f6f;
    color: white;
    padding: 30px 0;
    text-align: center;
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

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

.footer-social a {
    color: white;
    font-size: 18px;
}

/* Media Page Specific */
.media-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.media-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.media-card-content {
    padding: 30px;
}

.media-card h3 {
    color: #2c5f6f;
    margin-bottom: 15px;
}

/* Mentoring Page Specific */
.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 30px;
}

.testimonial {
    background: linear-gradient(135deg, #2c5f6f 0%, #1a4a57 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial blockquote {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
}

/* Contact Page Specific */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 50px;
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    color: #b8860b;
    margin-bottom: 10px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content,
    .two-column {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 30px;
    }
}
