/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #ffd700;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Hero section */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* Content section */
.content-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.98);
    min-height: 100vh;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.text-content,
.content-section p,
.content-section h2,
.content-section h3,
.content-section ul,
.content-section ol,
.content-section table {
    max-width: none;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.content-section h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin: 3rem auto 2rem;
    text-align: center;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #16213e;
    margin: 2rem auto 1rem;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-section ul,
.content-section ol {
    text-align: left;
    max-width: 800px;
    margin: 1.5rem auto;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Table styles */
.info-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin: 2rem auto;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.info-table th {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    font-weight: 600;
}

.info-table tr:hover {
    background: #f9f9f9;
}

/* Image styles */
.content-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 1rem auto;
    display: block;
}

.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-center {
    text-align: center;
    margin: 2rem 0;
}

.image-center .content-image {
    max-width: 600px;
}

.image-right {
    text-align: center;
    margin: 2rem 0;
}

/* CTA Button styles */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1a1a2e;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1rem 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffb347, #ffd700);
}

.inline-cta {
    display: block;
    text-align: center;
    max-width: 400px;
    margin: 2rem auto;
}

.final-cta {
    display: block;
    text-align: center;
    max-width: 500px;
    margin: 3rem auto;
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* FAQ styles */
.faq-section {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: linear-gradient(135deg, #90EE90, #7FFF00);
    color: #fff;
    padding: 1rem 1.5rem;
    cursor: pointer;
    margin: 0;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #16213e, #0f3460);
}

.faq-answer {
    padding: 1.5rem;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
    text-align: left;
}

.faq-answer ul {
    text-align: left;
    margin: 1rem 0;
}

/* Footer styles */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.last-updated {
    font-size: 0.9rem;
    color: #ccc;
}

.author {
    font-size: 0.9rem;
    color: #ccc;
}

/* Mobile Responsive Design */
@media screen and (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .content-section h2 {
        font-size: 1.7rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
    }

    .info-table {
        font-size: 0.9rem;
    }

    .info-table th,
    .info-table td {
        padding: 10px 8px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 20px 0;
    }

    .content-section p {
        font-size: 1rem;
        text-align: left;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .info-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo {
        height: 40px;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin: 2rem auto 1.5rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
        margin: 1.5rem auto 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .final-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .faq-question {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}

.author-bio {
    background-color: #f9f9f9;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.author-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ccc;
}

.author-text {
    flex: 1;
    min-width: 250px;
}

.author-text h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #222;
}

.author-text p {
    margin-top: 10px;
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}