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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    text-align: left;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4a6fa5;
    color: white;
}

.cookie-btn.accept:hover {
    background: #3a5a95;
}

.cookie-btn.decline {
    background: #4a6fa5;
    color: white;
}

.cookie-btn.decline:hover {
    background: #3a5a95;
}

.cookie-banner.hidden {
    display: none;
}

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

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

.cta-btn {
    background: #4a6fa5;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #3a5a95;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 20px 0;
    background: linear-gradient(135deg, #4a6fa5 0%, #2c4875 100%);
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    background: white;
    color: #4a6fa5;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    max-height: 640px;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

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

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Facts Section */
.facts {
    padding: 80px 0;
    background: white;
}

.facts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.fact-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.fact-number {
    font-size: 3rem;
    font-weight: bold;
    color: #4a6fa5;
    margin-bottom: 10px;
}

.fact-text {
    font-size: 1.1rem;
    color: #666;
}

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

.facts-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px;
    font-size: 1.3rem;
    color: #4a6fa5;
    margin-bottom: 10px;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

/* Reliability Section */
.reliability {
    padding: 80px 0;
    background: white;
}

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

.reliability-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.2;
}

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

.reliability-image img {
    width: 100%;
    border-radius: 10px;
}

/* Mentors Section */
.mentors {
    padding: 80px 0;
    background: #f8f9fa;
}

.mentors h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

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

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

.mentor-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.mentor-card h3 {
    font-size: 1.5rem;
    color: #4a6fa5;
    margin-bottom: 15px;
}

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

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;

}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: bold;
    color: #4a6fa5;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a6fa5 0%, #2c4875 100%);
}

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

.contact-form input {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
}

.submit-btn {
    padding: 15px;
    background: white;
    color: #4a6fa5;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

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

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a6fa5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        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;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-image img {
      max-height: 400px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .facts {
        padding: 60px 0;
    }
    
    .facts h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .fact-item {
        padding: 25px;
    }
    
    .fact-number {
        font-size: 2.5rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .service-card p {
        padding: 0 15px 15px;
        font-size: 0.95rem;
    }
    
    .reliability {
        padding: 60px 0;
    }
    
    .reliability-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reliability-text h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .reliability-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .mentors {
        padding: 60px 0;
    }
    
    .mentors h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .mentors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mentor-card {
        padding: 25px;
    }
    
    .mentor-card img {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .mentor-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 15px 0;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 0 15px 0;
        font-size: 0.9rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-form {
        max-width: 400px;
        gap: 15px;
    }
    
    .contact-form input {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem 1rem;
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    .logo {
        width: 35px;
        height: 35px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 0 15px;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about,
    .facts,
    .services,
    .reliability,
    .mentors,
    .faq,
    .contact {
        padding: 40px 0;
    }
    
    .about h2,
    .facts h2,
    .services h2,
    .reliability-text h2,
    .mentors h2,
    .faq h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .cookie-content {
        padding: 25px;
        margin: 15px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .cookie-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .fact-item {
        padding: 20px;
    }
    
    .fact-number {
        font-size: 2rem;
    }
    
    .fact-text {
        font-size: 1rem;
    }
    
    .service-card img {
        height: 150px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        padding: 12px;
    }
    
    .service-card p {
        padding: 0 12px 12px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .mentor-card {
        padding: 20px;
    }
    
    .mentor-card img {
        width: 100px;
        height: 100px;
    }
    
    .mentor-card h3 {
        font-size: 1.2rem;
    }
    
    .mentor-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-form {
        max-width: 100%;
        gap: 12px;
    }
    
    .contact-form input {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .about h2,
    .facts h2,
    .services h2,
    .reliability-text h2,
    .mentors h2,
    .faq h2 {
        font-size: 1.6rem;
    }
    
    .cookie-content {
        padding: 20px;
        margin: 10px;
    }
    
    .cookie-content h3 {
        font-size: 18px;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
    
    .fact-number {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .mentor-card h3 {
        font-size: 1.1rem;
    }
    
    .mentor-card p {
        font-size: 0.85rem;
    }
}

/* Landscape Orientation for Tablets */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mentors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .hamburger,
    .hero-cta,
    .submit-btn,
    .contact {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    .hero,
    .about,
    .facts,
    .services,
    .reliability,
    .mentors,
    .faq {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    h1, h2, h3 {
        color: black;
        page-break-after: avoid;
    }
    
    .service-card,
    .mentor-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

.policy {
  margin-top: 80px;
  padding-top: 60px;
  padding-bottom: 60px;
  color: rgba(88, 88, 88, 1);
}

.policy h1 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  word-break: break-word;

}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-content li {
  list-style-position: inside;
}

.policy-content a {
  color: inherit;
  text-decoration: unset;
}