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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.site-header {
    background: linear-gradient(2deg, #0a0404 0%, #137bc9 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: rgba(22, 159, 217, 0.98);
    padding: 20px 0;
    border-bottom: 2px solid #1653d3;
}

.header-top .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-brand {
    flex-shrink: 0;
}

.logo {
    max-height: 90px;
    width: auto;
}

.header-info h1 {
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 5px;
}

.header-info p {
    font-size: 15px;
    margin: 0;
}

.header-info .tagline {
    font-weight: 700;
    font-size: 16px;
}

/* Navigation */
.main-nav {
    background-color: #0a0404;
    padding: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 11px;
    margin: 5px;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background-color: rgba(22, 159, 217, 0.98);
    color: #fff;
}

.nav-menu a:first-child {
    color: #cb4b16;
}

/* Main Content */
.site-content {
    min-height: 60vh;
    padding: 40px 0;
}

.content-section {
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 20px;
    color: #0a0404;
}

.content-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #0a0404;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-section a {
    color: #137bc9;
    text-decoration: underline;
}

.content-section a:hover {
    color: #0a0404;
}

/* Hero Section */
.hero {
    background: linear-gradient(0deg, rgba(22,159,217,0.98) 0%, rgb(22,83,211) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    color: #137bc9;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s;
}

.hero .btn:hover {
    background-color: #0a0404;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.category-card {
    background: #f8f8f8;
    border: 2px solid #1653d3;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.category-card:hover {
    background: rgba(22, 159, 217, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #137bc9;
}

.category-card a {
    color: #137bc9;
    text-decoration: none;
    font-weight: 700;
}

.category-card a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 30px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0a0404;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #137bc9;
}

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

.btn-submit {
    background-color: #137bc9;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #0a0404;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
    background: linear-gradient(0deg, rgba(22,159,217,0.98) 0%, rgb(22,83,211) 100%);
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #e5e7ee;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
}

.social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
    font-size: 13px;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #e5e7ee;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu a {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

