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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    background: #1a1a2e;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

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

.nav-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4fc3f7;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.3rem;
    color: #b0bec5;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #4fc3f7;
    color: #1a1a2e;
}

.btn-primary:hover {
    background: #29b6f6;
}

.btn-secondary {
    background: transparent;
    color: #4fc3f7;
    border: 2px solid #4fc3f7;
}

.btn-secondary:hover {
    background: #4fc3f7;
    color: #1a1a2e;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    color: #b0bec5;
    margin-bottom: 25px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #b0bec5;
    font-size: 1.2rem;
}

/* Services */
.services-list {
    padding: 60px 0;
}

.service-item {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

/* About */
.about-content {
    padding: 60px 0;
}

.about-text h2 {
    color: #1a1a2e;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-text h2:first-child {
    margin-top: 0;
}

/* Contact */
.contact-content {
    padding: 60px 0;
}

.contact-info h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    margin-bottom: 25px;
}

.contact-method h3 {
    color: #1a1a2e;
    margin-bottom: 5px;
}

.contact-method a {
    color: #4fc3f7;
}

.contact-note {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note h3 {
    margin-bottom: 10px;
}

.contact-note ul {
    margin-left: 20px;
    margin-top: 10px;
}

.contact-note li {
    margin-bottom: 5px;
}

/* Error Page */
.error-page {
    padding: 100px 0;
    text-align: center;
}

.error-page h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.error-page p {
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #b0bec5;
    padding: 25px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b0bec5;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4fc3f7;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    color: #1a1a2e;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: #1a1a2e;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-text li {
    margin-bottom: 8px;
}

.legal-text a {
    color: #4fc3f7;
}

/* Support Page */
.support-content {
    padding: 60px 0;
}

.support-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.support-form-container h2 {
    color: #1a1a2e;
    margin-bottom: 25px;
}

.support-form .form-group {
    margin-bottom: 20px;
}

.support-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1a1a2e;
}

.support-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.support-form .form-control:focus {
    outline: none;
    border-color: #4fc3f7;
}

.support-form textarea.form-control {
    resize: vertical;
}

.support-form button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .tagline {
        font-size: 1.1rem;
    }
}
