/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #fafafa;
    color: #1a202c;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-red {
    color: #c52828;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.nav-logo-icon {
    background: #c52828;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
}

.nav-links a {
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: #c52828;
    border-bottom: 2px solid #c52828;
    padding-bottom: 4px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: #c52828;
    color: #fff;
}

.btn-primary:hover {
    background: #a82020;
}

.btn-outline {
    background: transparent;
    color: #4a5568;
    border: 1px solid #cbd5e0;
}

.btn-outline:hover {
    border-color: #c52828;
    color: #c52828;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background: #e6ffed;
    color: #22863a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid #b7ebc6;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 500px;
}

.info-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.info-card-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #a0aec0;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.info-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a202c;
}

.info-card-value.text-green {
    color: #38a169;
}

.info-card-sub {
    font-size: 0.75rem;
    color: #718096;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #718096;
    font-weight: 700;
    letter-spacing: 1px;
}

.overlay-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1a202c;
}

.overlay-status {
    color: #38a169;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Services Section */
.services {
    padding: 60px 0 100px;
    background: #fff;
    border-top: 1px solid #eaeaea;
}

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-header p {
    color: #4a5568;
    max-width: 600px;
}

.section-header hr {
    width: 60px;
    height: 3px;
    background: #c52828;
    border: none;
    margin-top: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 32px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: #fff5f5;
    color: #c52828;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-features li::before {
    content: "■";
    color: #c52828;
    font-size: 0.5rem;
    margin-top: 4px;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #c52828;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: #a82020;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .nav-links {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        flex-direction: column;
    }
}
