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

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2b0a3d;
    padding: 15px 20px;
}

.logo {
    height: 50px;
}

.navbar .nav-links {
    display: flex;
    list-style: none;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to right, #f3f3f3, #e6e6e6);
}

.hero-img {
    max-width: 200px;
    border-radius: 10px;
    margin-bottom: 20px;
}

section {
    padding: 40px 20px;
    border-bottom: 1px solid #eee;
}

h1, h2 {
    color: #2b0a3d;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #2b0a3d;
    color: white;
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        background-color: #2b0a3d;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        border-radius: 8px;
        padding: 10px;
    }
    .navbar .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}


.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #3b0a57, #8a2387);
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    margin-top: 20px;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin: 15px 0 25px;
}

.join-button {
    display: inline-block;
    background-color: #ffd166;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.join-button:hover {
    background-color: #ffb700;
}


.about-section {
    padding: 60px 20px;
    background: #f8f6fc;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 280px;
    animation: fadeInLeft 1.2s ease-in-out;
}

.about-text ul {
    margin-top: 15px;
    padding-left: 20px;
}

.about-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
    animation: fadeInRight 1.2s ease-in-out;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.about-headshot {
    width: 220px;
    max-width: 80%;
    display: block;
    margin: 0 auto 18px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.about-image img:hover {
    transform: scale(1.03);
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}


.mission-section {
    background: linear-gradient(to bottom, #fdfbfb, #ebedee);
    padding: 60px 20px;
    text-align: center;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.mission-box {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-5px);
}

.mission-box h3 {
    color: #2b0a3d;
    margin-bottom: 10px;
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.fade-left {
    animation: fadeInLeft 1.1s ease forwards;
}

.fade-right {
    animation: fadeInRight 1.1s ease forwards;
}


.mission-recommendations {
    margin-top: 60px;
    background: #fff;
    border-left: 6px solid #8a2387;
    padding: 30px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mission-recommendations h3 {
    margin-bottom: 20px;
    color: #2b0a3d;
}

.mission-recommendations ul {
    padding-left: 20px;
}

.mission-recommendations li {
    margin-bottom: 12px;
    line-height: 1.6;
}


.mission-image-center {
    text-align: center;
    margin: 40px auto;
}

.mission-image-center img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.mission-image-center img:hover {
    transform: scale(1.02);
}


.council-section {
    padding: 60px 20px;
    background: #f4f4f9;
}

.council-content {
    max-width: 900px;
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.council-content ul {
    margin-top: 20px;
    padding-left: 25px;
}

.council-content li {
    margin-bottom: 10px;
}

.council-recommendations {
    margin-top: 50px;
    background: #fff;
    border-left: 6px solid #2b0a3d;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}


.council-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 30px;
}

.council-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    text-align: center;
    padding-bottom: 20px;
}

.council-card img {
    width: 100%;
    height: auto;
    display: block;
}

.council-card h3 {
    margin-top: 15px;
    color: #2b0a3d;
}

.council-card p {
    padding: 0 15px;
    font-size: 0.95rem;
}

.price {
    font-weight: bold;
    margin-top: 10px;
    color: #000;
}


/* ETHICS Section - Glassmorphism and Slide Animation */
.ethics-section {
    padding: 60px 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    margin: 50px auto;
    max-width: 900px;
    color: #ffffff;
    background-image: linear-gradient(145deg, rgba(35,35,65,0.9), rgba(80,80,120,0.5));
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.ethics-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.ethics-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

.ethics-section .intro, .ethics-section .closing-quote {
    text-align: center;
    margin: 20px auto;
    font-size: 1.1rem;
    max-width: 700px;
}

.ethics-list {
    list-style: none;
    padding-left: 0;
    margin: 20px auto;
    max-width: 750px;
}

.ethics-list li {
    margin-bottom: 16px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 8px rgba(255,255,255,0.05);
}


.contact-section {
    padding: 60px 20px;
    text-align: center;
    background: #f8f8fb;
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form button {
    background-color: #2b0a3d;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #43235f;
}

.popup-message {
    display: none;
    margin-top: 20px;
    font-weight: bold;
    color: green;
    background: #e7ffe7;
    padding: 12px;
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
