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

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

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

/* Navigation */
nav {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #1e40af;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
}

.nav-links a:hover {
    color: #1e40af;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: white;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1e3a8a, #1e40af);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.hero .subtitle {
    font-size: 20px;
    margin-bottom: 32px;
}

.hero .tagline {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto;
}

/* RCC Banner */
.rcc-banner {
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    padding: 32px 24px;
    margin: 48px auto;
    max-width: 1200px;
}

.rcc-banner h2 {
    color: #14532d;
    font-size: 28px;
    margin-bottom: 12px;
}

.rcc-banner p {
    color: #166534;
    font-size: 18px;
    margin-bottom: 12px;
}

.rcc-banner a {
    color: #15803d;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

/* Sections */
section {
    padding: 64px 24px;
}

.page-content {
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
    color: #1f2937;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 12px;
}

.card p {
    color: #4b5563;
}

/* Features Section */
.feature {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 24px;
}

.feature h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}

.checkmark {
    color: #2563eb;
    font-size: 24px;
    flex-shrink: 0;
}

.bg-gray {
    background: #f9fafb;
}

/* About Page Styles */
.page-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 32px;
    color: #1f2937;
}

.page-content h2 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1f2937;
}

.page-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #1f2937;
}

.intro {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4b5563;
}

.values-list,
.requirements-list,
.benefits-list {
    list-style: none;
    margin-bottom: 24px;
}

.values-list li,
.requirements-list li,
.benefits-list li {
    margin-bottom: 12px;
    color: #4b5563;
}

.cage-highlight {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
}

.cage-highlight h3 {
    font-size: 20px;
    color: #1e40af;
    margin-bottom: 12px;
}

.cage-number {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
}

/* RCC Page Styles */
.rcc-intro {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 24px;
    margin-bottom: 32px;
}

.rcc-intro p {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
}

.cert-display {
    background: white;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.cert-display h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.cert-details {
    margin-bottom: 16px;
    color: #4b5563;
}

.cert-agencies {
    list-style: none;
    margin-top: 8px;
}

.cert-agencies li {
    margin-bottom: 4px;
    color: #4b5563;
}

.commitment-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
}

.commitment-box h3 {
    font-size: 20px;
    color: #14532d;
    margin-bottom: 12px;
}

.commitment-box p {
    color: #166534;
}

/* SDVOSB Section Styles */
.sdvosb-section {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
}

.sdvosb-logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.sdvosb-text h3 {
    font-size: 20px;
    color: #1e40af;
    margin-bottom: 8px;
}

.sdvosb-text p {
    color: #4b5563;
    margin: 0;
}

/* RCC Certificate Display */
.cert-display-box {
    background: white;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.cert-content {
    display: flex;
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

.cert-badge {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 160px;
}

.badge-title {
    font-size: 14px;
    margin: 8px 0 4px;
}

.badge-number {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
}

.cert-thumbnail {
    margin-top: 20px;
    text-align: center;
}

.cert-thumbnail a {
    display: inline-block;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 8px;
    background: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cert-thumbnail a:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cert-thumbnail img {
    width: 200px;
    height: auto;
    border-radius: 4px;
    display: block;
}

.cert-thumbnail p {
    margin-top: 8px;
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
}

@media (max-width: 768px) {
    .sdvosb-section {
        flex-direction: column;
        text-align: center;
    }
    
    .cert-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cert-thumbnail img {
        width: 150px;
    }
}

/* RCC Links Section */
.rcc-links-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #e5e7eb;
}

.rcc-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.rcc-link-card {
    background: white;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.rcc-link-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.rcc-link-card h3 {
    color: #1e40af;
    font-size: 20px;
    margin-bottom: 12px;
}

.rcc-link-card p {
    color: #4b5563;
    margin-bottom: 16px;
}

.rcc-external-link {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rcc-external-link:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.contact-card,
.address-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h3 {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-info-box {
    background: #eff6ff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
}

.contact-info-box h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-info-box ul {
    list-style: none;
    margin: 16px 0;
}

.contact-info-box ul li {
    margin-bottom: 8px;
}

.contact-note {
    margin-top: 16px;
}

.address-item {
    margin-bottom: 24px;
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-item h3 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e40af;
}

.address {
    padding: 12px;
    background: #f8fafc;
    border-radius: 4px;
    border-left: 3px solid #2563eb;
}

.address p {
    margin-bottom: 4px;
    color: #4b5563;
    font-weight: 500;
}

.address p:last-child {
    margin-bottom: 0;
}

.sam-info {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 8px;
    margin-top: 48px;
}

.sam-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.cage-box {
    background: white;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    display: inline-block;
    margin-top: 16px;
}

.cage-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.cage-box .cage-number {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
}

/* Footer */
footer {
    background: #111827;
    color: #d1d5db;
    padding: 48px 24px;
    margin-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section .cage {
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.footer-section .certs {
    font-size: 12px;
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 14px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .tagline {
        font-size: 18px;
    }
    
    .nav-links {
        gap: 12px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .grid-2,
    .grid-3,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-content h1 {
        font-size: 28px;
    }
    
    .page-content h2 {
        font-size: 24px;
    }
}