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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a5276;
}

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

.nav-links li {
    margin: 0 1.5rem;
}

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

.nav-links a:hover {
    color: #2980b9;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #1a5276;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background-color: #fff3cd;
    border-bottom: 1px solid #ffeeba;
    padding: 1rem;
    margin-top: 70px;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.disclaimer-content i {
    color: #856404;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.disclaimer-content p {
    color: #856404;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.disclaimer-content strong {
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a5276, #2980b9);
    color: white;
    padding: 0 1rem;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* Features Section */
.features {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5276;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #1a5276;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 5rem 1rem;
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: #1a5276;
    margin-bottom: 2rem;
}

.requirements-list {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    max-width: 600px;
}

.requirements-list li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.requirements-list li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.additional-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.additional-info h3 {
    color: #1a5276;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a5276;
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem;
    background-color: #1a5276;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

/* Footer */
.footer {
    background-color: #1a5276;
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Navigation */
.nav-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 70px;
    background-color: white;
    width: 100%;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .requirements-list {
        padding: 0 1rem;
    }

    .contact-intro {
        padding: 0 1rem;
    }

    .disclaimer-banner {
        padding: 1rem;
    }

    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }

    .disclaimer-content i {
        margin-bottom: 0.5rem;
    }
}

/* Forms Section */
.forms-section {
    padding: 120px 1rem 5rem;
    background-color: #f9f9f9;
    min-height: 100vh;
}

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

.forms-container h1 {
    text-align: center;
    color: #1a5276;
    margin-bottom: 1rem;
}

.forms-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.form-card i {
    font-size: 2.5rem;
    color: #1a5276;
    margin-bottom: 1rem;
}

.form-card h3 {
    color: #1a5276;
    margin-bottom: 0.5rem;
}

.form-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.download-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #1a5276;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #2980b9;
}

.download-button i {
    font-size: 1rem;
    color: white;
    margin-right: 0.5rem;
}

.forms-disclaimer {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
}

.forms-disclaimer h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.forms-disclaimer p {
    color: #666;
}

/* Active Navigation State */
.nav-links a.active {
    color: #e74c3c;
    font-weight: 600;
}

/* Responsive Design for Forms */
@media screen and (max-width: 768px) {
    .forms-section {
        padding-top: 100px;
    }

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

    .forms-intro {
        padding: 0 1rem;
    }

    .forms-disclaimer {
        margin: 2rem 1rem;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.video-section .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }
    
    .video-section .section-intro {
        padding: 0 20px;
    }
} 