/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #111;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel Decorative', serif;
    margin: 0 0 0.5em 0;
    font-weight: 700;
}

h2 {
    font-family: 'Cinzel ', serif;
}

a {
    text-decoration: none;
    color: black;
    transition: color 0.2s;
}
a:hover {
    color: #222;
}

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

main {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 12px;
    box-sizing: border-box;
}

/* Header Styles */
.site-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
    border-radius: 0 0 32px 32px;
    padding: 0;
    margin-bottom: 18px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}
.header-container.no-logo {
    justify-content: center;
}
.header-logo {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
}
.header-nav {
    display: flex;
    gap: 28px;
}
.header-nav.center-nav {
    justify-content: center;
    width: 100%;
}
.header-nav.center-nav a {
    text-align: center;
}
.header-nav a {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #111;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.2s, color 0.2s;
}
.header-nav a:hover, .header-nav a.active {
    color: #222;
    border-bottom: 2px solid #222;
}
@media (max-width: 700px) {
    .header-container.no-logo {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 10px 4px;
    }
    .header-nav.center-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100vw;
        overflow-x: auto;
        gap: 10px;
    }
    .header-nav.center-nav a {
        font-size: 0.85rem;
        padding: 5px 4px;
        min-width: 48px;
        white-space: nowrap;
    }
}

/* Hero Section */
.hero.minimal-hero {
    background: white;
    color: black;
    height: 80vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.04);
    border-radius: 0 0 48px 48px;
    margin-bottom: 32px;
}


.brand-title1{
    font-family: 'Cinzel Decorative', serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.05;
    margin: 0;
}

.brand-title2 {
    font-family: 'Roboto', sans-serif;
    font-size: 3.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}


.hero .brand-title1 {
    margin-bottom: 0.0000001em;
}
.hero .brand-title2 {
    margin-top: -0.35em;
}


.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 32px;
}
.cta-button {
    background: black;
    color: white;
    border: none;
    border-radius: 32px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 8px;
    margin-bottom: 8px;
    display: inline-block;
}
.cta-button:hover {
    background: #222;
    color: #fff;
}
.brand-logo {
    height: 110px;
    margin-bottom: 24px;
    max-width: 90vw;
    width: auto;
    display: block;
}

/* Benefits Section */
.benefits {
    background: #fafbfc;
    border-radius: 40px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.04);
    padding: 40px 12px 32px 12px;
    margin: 32px auto 0 auto;
    max-width: 700px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}
.benefits-header-box {
    text-align: center;
    margin-bottom: 0;
}
.benefits-main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.benefits-main-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    background: #fff;
}
.benefits-header-box h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.1;
    word-break: break-word;
}
.benefits-subtitle {
    font-size: 1.08rem;
    color: #444;
    font-family: 'Roboto', sans-serif;
    margin: 0 auto;
    max-width: 420px;
    opacity: 0.85;
    line-height: 1.5;
    text-align: left;
}
@media (max-width: 900px) {
    .benefits {
        max-width: 98vw;
        padding: 24px 4vw 18px 4vw;
        border-radius: 18px;
    }
    .benefits-main-image img {
        width: 80px;
        height: 80px;
        border-radius: 14px;
    }
    .benefits-header-box h2 {
        font-size: 1.2rem;
    }
    .benefits-subtitle {
        font-size: 0.95rem;
        max-width: 90vw;
    }
}
@media (max-width: 600px) {
    .benefits {
        padding: 10px 2vw 10px 2vw;
        border-radius: 10px;
    }
    .benefits-main-image img {
        width: 54px;
        height: 54px;
        border-radius: 8px;
    }
    .benefits-header-box h2 {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }
    .benefits-subtitle {
        font-size: 0.89rem;
        max-width: 98vw;
    }
}

/* Popular Courses */
.popular-courses {
    padding: 40px 0;
    background: #fafafa;
    border-radius: 32px;
    margin: 32px 0;
}
.course-preview {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 24px 0;
}
.course {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    padding: 24px 16px;
    width: 220px;
    text-align: center;
}

/* How It Works */
.how-it-works {
    padding: 40px 0;
    background: #fff;
}
.steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}
.step {
    background: #f7f7f7;
    border-radius: 24px;
    padding: 24px 16px;
    text-align: center;
    width: 160px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    margin: 32px 0;
    text-align: center;
}
.testimonials blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 0 auto 16px auto;
    max-width: 600px;
}
.testimonials cite {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
}

/* Freebies */
.freebies {
    padding: 40px 0;
    text-align: center;
}

/* Footer/Conversion Block */
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 40px 0 20px 0;
    border-radius: 32px 32px 0 0;
    margin-top: 40px;
}
.conversion-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 8px;
}

/* Header Icon Styles */
@media (max-width: 900px) {
    .header-nav.center-nav .nav-icon {
        display: inline-block;
    }
    .header-nav.center-nav .nav-text {
        display: none;
    }
}
@media (min-width: 901px) {
    .header-nav.center-nav .nav-icon {
        display: none;
    }
    .header-nav.center-nav .nav-text {
        display: inline;
    }
}
.nav-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    margin: 0 2px;
}
.home-icon {
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 12l9-8 9 8v8a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-4h-4v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/></svg>');
}
.courses-icon {
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 17V7a2 2 0 0 1 2-2h7.5a2 2 0 0 1 2 2v1.5l2.5 1.5v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"/><path d="M12 12l6-3.5"/><path d="M12 12L6 8.5"/><path d="M12 12v7"/><path d="M12 12l-6-3.5"/><path d="M12 12l6 3.5"/></svg>'); /* Rocket icon */
}
.about-icon {
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 19.5V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v13.5"/><path d="M4 19.5a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2"/><path d="M8 2v4"/><path d="M16 2v4"/></svg>'); /* Book icon */
}
.contact-icon {
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 16.92V19a2 2 0 0 1-2.18 2A19.72 19.72 0 0 1 3 5.18 2 2 0 0 1 5 3h2.09a2 2 0 0 1 2 1.72c.13 1.05.37 2.07.72 3.06a2 2 0 0 1-.45 2.11l-1.27 1.27a16 16 0 0 0 6.29 6.29l1.27-1.27a2 2 0 0 1 2.11-.45c.99.35 2.01.59 3.06.72A2 2 0 0 1 22 16.92z"/></svg>'); /* Land phone icon */
}
.suggestions-icon {
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19l7-7-7-7"/><path d="M5 12h14"/><path d="M12 19V5"/><path d="M9 15l3-3-3-3"/></svg>'); /* Pen icon */
}

/* Responsive Design */
@media (max-width: 900px) {
    .benefit-cards, .course-preview, .steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .course-preview {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .hero.minimal-hero {
        height: 60vh;
        min-height: 260px;
        border-radius: 0 0 24px 24px;
    }
    .brand-title {
        font-size: 2.1rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .benefit, .step {
        width: 90%;
    }
    .course {
        width: 90%;
    }
    .testimonials {
        padding: 20px;
    }
    footer {
        padding: 24px 0 12px 0;
        border-radius: 16px 16px 0 0;
    }
    .category-list {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        justify-content: flex-start;
        margin-left: 0;
        margin-right: 0;
    }
    .category-card {
        font-size: 0.85rem;
        padding: 10px 12px;
        min-width: 120px;
        white-space: nowrap;
        border-radius: 14px;
    }
}

/* Course Page Hero */
.course-hero {
    min-height: 320px;
    margin-bottom: 32px;
}

/* Course Categories */
.course-categories {
    padding: 32px 0 0 0;
    background: #fff;
    text-align: center;
}
.category-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 24px 0 0 0;
}
.category-card {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 20px 32px;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    color: #111;
    font-weight: 500;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
}
.category-card:hover {
    background: #222;
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.08);
}

/* Course List */
.course-list {
    padding: 40px 0 0 0;
    background: #fafafa;
    border-radius: 32px;
    margin: 32px 0;
    text-align: center;
}
.course-preview {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 24px 0;
}
.course {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    padding: 28px 18px;
    width: 260px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.course h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.course-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 8px;
}
.course-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 18px;
}

/* Pricing */
.pricing {
    padding: 40px 0 0 0;
    text-align: center;
}
.pricing-block {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 24px 0;
}
.price-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    padding: 28px 18px;
    width: 260px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

/* Featured Course Section */
.featured-course {
    padding: 48px 0 32px 0;
    background: #fafafa;
    border-radius: 32px;
    margin: 32px 0;
}
.featured-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}
.featured-image {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.featured-info {
    flex: 1 1 320px;
    text-align: left;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
}
.featured-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.featured-info .course-desc {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 12px;
}
.featured-info .course-meta {
    font-size: 1rem;
    color: #888;
    margin-bottom: 22px;
}

.coming-soon-card {
    opacity: 0.6;
    background: #f3f3f3;
    border: 1.5px dashed #bbb;
}

@media (max-width: 900px) {
    .category-list, .course-preview, .pricing-block {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .course, .price-card {
        width: 90vw;
        max-width: 340px;
    }
    .featured-content {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .featured-info {
        text-align: center;
        align-items: center;
        max-width: 100vw;
        padding-left: 0;
    }
}
@media (min-width: 901px) {
    .featured-content {
        align-items: center;
        justify-content: flex-start;
        gap: 32px;
    }
    .featured-info {
        align-items: flex-start;
        padding-left: 0;
    }
    .featured-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* About Page Styles */
.about-hero {
    background: #fafafa;
    border-radius: 0 0 48px 48px;
    padding: 64px 0 40px 0;
    text-align: center;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.04);
}
.about-hero h1 {
    font-size: 3rem;
    font-family: 'Cinzel Decorative', serif;
    margin-bottom: 12px;
}
.about-hero p {
    font-size: 1.3rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.about-block {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    padding: 32px 24px;
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 420px;
    text-align: left;
}
.about-block h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-family: 'Cinzel Decorative', serif;
}
.about-block p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 8px;
}
.about-team {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.team-member {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    flex: 1 1 120px;
    min-width: 120px;
    max-width: 180px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.04);
}
.team-member img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 8px;
    object-fit: cover;
}
.team-member h3 {
    font-size: 1.1rem;
    margin: 0 0 4px 0;
    font-family: 'Roboto', sans-serif;
}
.team-member p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}
.about-impact {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 24px 18px;
    margin: 32px 0;
    text-align: center;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
}
.about-impact h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.about-impact p {
    font-size: 1.05rem;
    color: #444;
}
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .about-block {
        max-width: 95vw;
    }
    .about-team {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: #fafafa;
    border-radius: 0 0 48px 48px;
    padding: 64px 0 40px 0;
    text-align: center;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.04);
}
.contact-hero h1 {
    font-size: 2.7rem;
    font-family: 'Cinzel Decorative', serif;
    margin-bottom: 12px;
}
.contact-hero p {
    font-size: 1.2rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

#contact-form {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    padding: 32px 24px;
    max-width: 480px;
    margin: 0 auto 32px auto;
}
#contact-form h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-family: 'Cinzel Decorative', serif;
}
#contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #222;
}
#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid #e0e0e0;
    margin-bottom: 18px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    background: #fafafa;
    transition: border 0.2s;
}
#contact-form input:focus,
#contact-form textarea:focus {
    border: 1.5px solid #222;
    outline: none;
}
#contact-form button {
    background: black;
    color: white;
    border: none;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 8px;
    margin-bottom: 8px;
    display: inline-block;
}
#contact-form button:hover {
    background: #222;
}
#contact-info {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 28px 18px;
    margin: 32px auto;
    text-align: center;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    max-width: 480px;
}
#contact-info h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
#contact-info a {
    color: #111;
    font-weight: 500;
    text-decoration: underline;
}
#whatsapp-button a {
    display: inline-block;
    background: #25d366;
    color: #fff;
    border-radius: 18px;
    padding: 10px 22px;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
    transition: background 0.2s;
}
#whatsapp-button a:hover {
    background: #128c7e;
}
#social-media {
    text-align: center;
    margin: 32px auto 0 auto;
}
#social-media h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
#social-media ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}
#social-media li a {
    display: inline-block;
    background: #f7f7f7;
    color: #222;
    border-radius: 14px;
    padding: 10px 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
#social-media li a:hover {
    background: #222;
    color: #fff;
}
@media (max-width: 900px) {
    #contact-form, #contact-info {
        max-width: 98vw;
    }
    .about-section {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

/* Suggestions Page Styles */
.suggestions-hero {
    background: #fafafa;
    border-radius: 0 0 48px 48px;
    padding: 64px 0 40px 0;
    text-align: center;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.suggestions-hero h1 {
    font-size: 2.7rem;
    font-family: 'Cinzel Decorative', serif;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.suggestions-hero p {
    font-size: 1.2rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}
.suggestions-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    width: 320px;
    height: 120px;
    background: radial-gradient(circle at 50% 0, #e0e0e0 0%, transparent 80%);
    opacity: 0.25;
    border-radius: 50%;
    z-index: 0;
}

#suggestion-form {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
    padding: 32px 24px;
    max-width: 480px;
    margin: 0 auto 32px auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}
#suggestion-form h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-family: 'Cinzel Decorative', serif;
}
#suggestion-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #222;
}
#suggestion-form input,
#suggestion-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid #e0e0e0;
    margin-bottom: 18px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    background: #fafafa;
    transition: border 0.2s;
}
#suggestion-form input:focus,
#suggestion-form textarea:focus {
    border: 1.5px solid #222;
    outline: none;
}
#suggestion-form button {
    background: black;
    color: white;
    border: none;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    margin-top: 8px;
    margin-bottom: 8px;
    display: block;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
#suggestion-form button:hover {
    background: #222;
    transform: translateY(-2px) scale(1.03);
}
.suggestion-form-note {
    font-size: 1.01rem;
    color: #555;
    text-align: justify;
    max-width: 420px;
    margin: 16px auto 0 auto;
    font-family: 'Roboto', sans-serif;
    opacity: 0.85;
}

.suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 48px auto;
    padding: 0 8px;
}
.suggestion-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
    padding: 24px 20px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.18s;
    border-left: 6px solid #222;
    animation: fadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) both;
}
.suggestion-card:hover {
    box-shadow: 0 6px 24px 0 rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.01);
}
.suggestion-card .suggestion-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}
.suggestion-card .suggestion-text {
    font-size: 1.13rem;
    color: #222;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
}
.suggestion-card .suggestion-author {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 900px) {
    .suggestions-list {
        max-width: 98vw;
        gap: 16px;
    }
    #suggestion-form {
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .suggestions-hero {
        padding: 36px 0 24px 0;
        border-radius: 0 0 24px 24px;
    }
    .suggestions-hero h1 {
        font-size: 1.7rem;
    }
    .suggestions-hero p {
        font-size: 1rem;
    }
    .suggestion-card {
        padding: 16px 10px;
        border-radius: 14px;
    }
}

/* FAQ (F7Q) Section Styles */
.faq-section {
    background: #fafafa;
    border-radius: 48px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.06);
    padding: 64px 24px 56px 24px;
    margin: 64px auto 0 auto;
    max-width: 1100px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}
.faq-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.faq-grid {
    display: flex;
    flex-direction: row;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.faq-col {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.faq-item {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
    padding: 0 0 0 0;
    transition: box-shadow 0.2s, transform 0.18s;
    position: relative;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: #111;
    text-align: left;
    padding: 28px 32px 18px 32px;
    cursor: pointer;
    border-radius: 24px 24px 0 0;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    position: relative;
    z-index: 2;
}
.faq-question::after {
    content: '\25BC';
    float: right;
    font-size: 1.1em;
    color: #bbb;
    transition: transform 0.2s;
    margin-left: 12px;
}
.faq-answer.open + .faq-question::after,
.faq-question.open::after {
    transform: rotate(180deg);
}
.faq-question.hovered,
.faq-question:focus {
    background: #222;
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.08);
}
.faq-answer {
    display: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.08rem;
    color: #333;
    background: #f7f7f7;
    border-radius: 0 0 24px 24px;
    padding: 0 32px 24px 32px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.23,1.01,.32,1), padding 0.2s;
    opacity: 0.98;
    box-shadow: none;
}
.faq-answer.open {
    display: block;
    max-height: 300px;
    padding: 12px 32px 24px 32px;
    transition: max-height 0.45s cubic-bezier(.23,1.01,.32,1), padding 0.2s;
}
@media (max-width: 900px) {
    .faq-section {
        padding: 36px 4vw 32px 4vw;
        border-radius: 24px;
    }
    .faq-grid {
        flex-direction: column;
        gap: 24px;
    }
    .faq-col {
        max-width: 100vw;
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .faq-title {
        font-size: 1.3rem;
    }
    .faq-section {
        padding: 12px 2vw 12px 2vw;
        border-radius: 14px;
    }
    .faq-grid {
        gap: 8px;
    }
    .faq-col {
        gap: 10px;
    }
    .faq-item {
        border-radius: 10px;
    }
    .faq-question {
        font-size: 0.98rem;
        padding: 12px 8px 8px 8px;
        border-radius: 10px 10px 0 0;
    }
    .faq-answer, .faq-answer.open {
        font-size: 0.93rem;
        padding: 6px 8px 10px 8px;
        border-radius: 0 0 10px 10px;
    }
}

/* Library Page Styles */
.library-hero {
    background: #fafafa;
    border-radius: 0 0 48px 48px;
    padding: 56px 0 32px 0;
    text-align: center;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.04);
}
.library-hero h1 {
    font-size: 2.5rem;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
}
.library-hero p {
    font-size: 1.15rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}
.library-list {
    max-width: 900px;
    margin: 0 auto 48px auto;
    padding: 0 12px;
}
.library-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}
.library-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
    padding: 24px 18px;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
    transition: box-shadow 0.18s, transform 0.15s;
}
.library-card:hover {
    box-shadow: 0 6px 24px 0 rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.01);
}
.library-thumb {
    width: 90px;
    height: 120px;
    border-radius: 14px;
    background: #f7f7f7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
    margin-bottom: 8px;
}
.library-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}
.library-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.library-title {
    font-size: 1.08rem;
    color: #111;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-bottom: 2px;
    word-break: break-all;
    text-align: center;
}
.cta-button.small {
    padding: 8px 18px;
    font-size: 0.98rem;
    border-radius: 18px;
    margin-top: 4px;
}
@media (max-width: 900px) {
    .library-grid {
        gap: 14px;
    }
    .library-card {
        min-width: 0;
        max-width: 98vw;
        width: 90vw;
        padding: 14px 8px;
    }
    .library-icon {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}
@media (max-width: 600px) {
    .library-hero {
        padding: 24px 0 14px 0;
        border-radius: 0 0 18px 18px;
    }
    .library-hero h1 {
        font-size: 1.3rem;
    }
    .library-hero p {
        font-size: 0.98rem;
    }
    .library-card {
        padding: 8px 2px;
        border-radius: 10px;
    }
    .library-title {
        font-size: 0.93rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PDF Modal Styles */
.pdf-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdf-modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}
.pdf-modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    padding: 24px 18px 18px 18px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pdf-modal-close {
    position: absolute;
    top: 10px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #222;
    cursor: pointer;
    z-index: 3;
}
#pdf-viewer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
#pdf-viewer-canvas {
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
    margin-bottom: 12px;
    max-width: 80vw;
    max-height: 70vh;
}
.pdf-modal-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 4px;
}
.pdf-modal-controls button {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.18s;
}
.pdf-modal-controls button:hover {
    background: #444;
}
#pdf-page-info {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    color: #222;
}
@media (max-width: 700px) {
    .pdf-modal-content {
        padding: 8px 2vw 8px 2vw;
        max-width: 98vw;
        max-height: 98vh;
    }
    #pdf-viewer-canvas {
        max-width: 96vw;
        max-height: 60vh;
    }
}

/* Library Search Bar Styles */
.library-search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 18px auto 0 auto;
    max-width: 420px;
    width: 100%;
}
#library-search-input {
    flex: 1 1 auto;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1.5px solid #e0e0e0;
    font-size: 1.08rem;
    font-family: 'Roboto', sans-serif;
    background: #fafafa;
    transition: border 0.2s;
    outline: none;
}
#library-search-input:focus {
    border: 1.5px solid #222;
}
#library-search-btn {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 10px 18px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.18s;
}
#library-search-btn:hover {
    background: #444;
}
@media (max-width: 600px) {
    .library-search-bar {
        max-width: 98vw;
    }
    #library-search-input {
        font-size: 0.98rem;
        padding: 8px 10px;
    }
    #library-search-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }
}