﻿* {
    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;
    background-color: #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Navigation */
.top-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066cc, #00a86b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0066cc;
}

.nav-menu a.active {
    color: #0066cc;
    font-weight: 600;
}

.nav-menu a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc;
}

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 107, 0.05) 100%);
    margin-top: 70px;
}

.hero-tagline {
    color: #00a86b;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-highlight {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #00a86b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero-highlight p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-highlight p:last-child {
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eaeaea;
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #00a86b;
    border-radius: 2px;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 25px 0 30px;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00a86b;
    font-weight: bold;
}

/* Quote Box */
.quote-box {
    background-color: rgba(0, 102, 204, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #0066cc;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.quote-author {
    font-weight: 600;
    color: #0066cc;
}

/* Contact Button */
.contact-button {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.contact-button:hover {
    background-color: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1.2rem;
    margin-bottom: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-subtitle {
    color: #999;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero {
        padding: 120px 0 40px;
        margin-top: 120px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
}