/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.8em;
    margin-bottom: 20px;
    opacity: 0.95;
    color: #fff;
}

.hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 1;
    line-height: 1.8;
    color: #fff;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #4a90e2;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2em;
}

.btn {
    display: inline-block;
    background-color: #4a90e2;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #357abd;
}

/* Features Section */
.features {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
    border-color: #4a90e2;
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #4a90e2;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.feature-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.download h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
 

.download p {
    color: #fff;
}   color: #fff;
}

.download > p:first-of-type {
    font-size: 1.1em;
    margin-bo1;
    color: #fff;
}

.download-info {
    margin-top: 20px;
    font-size: 0.95em;
    opacity: 1;
    color: #fff !important;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #4a90e2;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.footer-section p {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9em;
}

/* Legal Pages Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid #4a90e2;
    margin-bottom: 30px;
}

header h1 {
    color: #4a90e2;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.1em;
}

/* Navigation */
nav {
    background-color: #f8f9fa;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #e3f2fd;
}

/* Main Content */
main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #4a90e2;
    margin-bottom: 20px;
    font-size: 2em;
}

h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

h4 {
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

p {
    margin-bottom: 15px;
    color: #666;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    color: #666;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.link-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.link-card h3 {
    color: #4a90e2;
    margin-bottom: 10px;
}

.link-card p {
    margin-bottom: 15px;
    font-size: 0.95em;
}

/* Content Sections */
.content-section {
    background-color: #fafafa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #4a90e2;
}

.content-section h3 {
    margin-top: 0;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 15px 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .logo {
        font-size: 1.2em;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero-subtitle {
        font-size: 1.3em;
    }

    .hero-description {
        font-size: 1em;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1em;
    }

    .features h2 {
        font-size: 2em;
    }

    .download h2 {
        font-size: 2em;
    }

    header h1 {
        font-size: 2em;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.1em;
    }

    .nav-menu {
        top: 50px;
    }

    .nav-menu.active {
        max-height: 280px;
    }

    .nav-menu a {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .hero-description {
        font-size: 0.95em;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .features {
        margin: 40px auto;
    }

    .features h2 {
        font-size: 1.8em;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        font-size: 2em;
    }

    .download {
        padding: 50px 20px;
    }
}

/* Print Styles */
@media print {
    nav {
        display: none;
    }

    .btn {
        display: none;
    }
}

