:root {
    --dark-blue: #1A2A3A;
    --light-gray: #F1F2F3;
    --white: #FFFFFF;
    --accent: #3B82F6;
    --green: #10B981;
    --purple: #8B5CF6;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-blue);
    line-height: 1.6;
}

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

/* Header */
header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--light-gray);
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.cta-button {
    background-color: var(--dark-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: #0F1A24;
    transform: translateY(-1px);
}

/* Hero Section */
.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #1A2A3A 0%, #2D3E50 100%);
    color: white;
    border-radius: 0 0 20px 20px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: rgba(26, 42, 58, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(26, 42, 58, 0.1);
}

.category-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.category-header h3 {
    font-size: 28px;
    font-weight: 700;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid var(--accent);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-blue);
}

.service-description {
    margin-bottom: 20px;
    color: rgba(26, 42, 58, 0.8);
}

.service-features {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
    color: rgba(26, 42, 58, 0.8);
}

.pricing-box {
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
}

.business-value {
    background-color: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--purple);
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.business-value h5 {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tables */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pricing-table th {
    background-color: var(--dark-blue);
    color: white;
    padding: 16px;
    text-align: left;
}

.pricing-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(26, 42, 58, 0.1);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.tier-name {
    font-weight: 600;
    color: var(--dark-blue);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--white);
    border-radius: 20px;
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(26, 42, 58, 0.7);
}

.primary-button {
    background-color: var(--dark-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.primary-button:hover {
    background-color: #0F1A24;
    transform: translateY(-1px);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--dark-blue);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
    
    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .service-card {
        padding: 20px;
    }
}