.policy,
.success,
.contact-section {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__link {
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

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

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

html {
    scroll-behavior: smooth;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #FFD700;
    color: #1a237e;
}

.btn-primary:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #1a237e;
    color: white;
}

.btn-secondary:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    margin: 20px;
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

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

.cookie-accept {
    background-color: #FFD700;
    color: #1a237e;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept:hover {
    background-color: #FFC107;
}

.cookie-reject {
    background: transparent;
    color: #666;
    padding: 15px 30px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.cookie-reject:hover {
    color: #333;
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    margin: 20px;
}

.success-content h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.success-content p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.success-btn {
    background-color: #FFD700;
    color: #1a237e;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.success-btn:hover {
    background-color: #FFC107;
}

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

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    text-decoration: none;
}

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

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

.nav-link:hover {
    color: #1a237e;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #FFD700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mentor Section */
.mentor {
    padding: 80px 0;
    background: #f8f9fa;
}

.mentor h2 {
    text-align: center;
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 60px;
}

.mentor-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.mentor-image {
    flex: 1;
}

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

.mentor-text {
    flex: 1;
}

.mentor-text blockquote {
    font-size: 24px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    quotes: """ """;
}

.mentor-text blockquote::before {
    content: open-quote;
    color: #FFD700;
    font-size: 36px;
}

.mentor-text blockquote::after {
    content: close-quote;
    color: #FFD700;
    font-size: 36px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
}

.mission h2 {
    text-align: center;
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 40px;
}

.mission-text {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
}

.approach h3 {
    font-size: 28px;
    color: #1a237e;
    margin-bottom: 40px;
}

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

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.approach-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.approach-icon img {
    width: 100%;
    height: 100%;
}

.approach-item h4 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 10px;
}

.approach-item p {
    color: #666;
}

.approach-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.approach-images img {
    width: 100%;
    border-radius: 10px;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: #f8f9fa;
}

.programs h2 {
    text-align: center;
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 20px;
}

.programs-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

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

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

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

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 24px;
    color: #1a237e;
    margin-bottom: 15px;
}

.program-content p {
    color: #666;
    margin-bottom: 25px;
}

/* Workshops Section */
.workshops {
    padding: 80px 0;
}

.workshops h2 {
    text-align: center;
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 20px;
}

.workshops-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.workshops-list h3 {
    font-size: 24px;
    color: #1a237e;
    margin-bottom: 30px;
}

.workshop-item {
    background: #FFD700;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.workshop-item h4 {
    font-size: 18px;
    color: #1a237e;
    margin-bottom: 10px;
}

.workshop-item p {
    color: #1a237e;
    font-weight: 500;
}

.workshops-list .btn {
    margin-top: 30px;
}

.workshops-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.workshops-images img {
    width: 100%;
    border-radius: 10px;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.success-stories h2 {
    text-align: center;
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 20px;
}

.success-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.story-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
}

.story-card blockquote {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    quotes: """ """;
}

.story-card blockquote::before {
    content: open-quote;
    color: #FFD700;
    font-size: 24px;
}

.story-card blockquote::after {
    content: close-quote;
    color: #FFD700;
    font-size: 24px;
}

.story-card cite {
    font-style: normal;
}

.story-card strong {
    display: block;
    color: #1a237e;
    margin-bottom: 5px;
}

.story-card span {
    color: #666;
    font-size: 14px;
}

/* Resources Section */
.resources {
    padding: 80px 0;
}

.resources h2 {
    text-align: center;
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 20px;
}

.resources-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.resource-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #1a237e;
    transition: transform 0.3s ease;
}

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

.resource-icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
  
}

.resource-icon img {
    width: 100%;
    height: 100%;
      object-fit: cover;
}

.resource-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.resource-card p {
    margin-bottom: 25px;
    opacity: 0.8;
}

.resource-card .btn {
    background: #1a237e;
    color: white;
}

.resource-card .btn:hover {
    background: #0d47a1;
}

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

.faq h2 {
    text-align: center;
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-brand h3 {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
}

.social-links img {
    width: 20px;
    height: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item img {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .mentor-content {
        flex-direction: column;
        gap: 40px;
    }

    .workshops-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workshops-images {
        grid-template-columns: 1fr;
    }

    .approach-images {
        grid-template-columns: 1fr;
    }

    .programs-grid,
    .stories-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-item {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        margin: 20px;
        padding: 30px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 28px;
    }

    .program-card,
    .story-card,
    .resource-card {
        margin: 0 15px;
    }

    .programs-grid,
    .stories-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cookie-link {
  color: #000;
}