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

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

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a4d7c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d6da8;
}

.btn-portal {
    background: #2d6da8;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-portal:hover {
    background: #1a4d7c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a4d7c 0%, #2d6da8 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #1a4d7c;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a4d7c;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a4d7c;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1a4d7c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a4d7c;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.about-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6da8;
    font-weight: bold;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #2d6da8;
}

.stat h3 {
    font-size: 2.5rem;
    color: #1a4d7c;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-size: 1rem;
}

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

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a4d7c;
}

.contact p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-item strong {
    color: #1a4d7c;
    display: block;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #2d6da8;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: #2d6da8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a4d7c 0%, #2d6da8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-main h2 {
    color: #1a4d7c;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-main ul {
    margin-bottom: 2rem;
    color: #555;
}

.content-main ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.team-member {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.team-member h3 {
    color: #1a4d7c;
    margin-bottom: 0.3rem;
}

.team-member .role {
    color: #2d6da8;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.team-member p {
    font-size: 0.95rem;
}

/* Certifications List */
.cert-list {
    list-style: none;
    padding-left: 0;
}

.cert-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.cert-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6da8;
    font-weight: bold;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid #2d6da8;
}

.value-card h4 {
    color: #1a4d7c;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    color: #1a4d7c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stat-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: #1a4d7c;
    margin-bottom: 0.3rem;
}

.stat-item span {
    color: #666;
    font-size: 0.9rem;
}

.cta-card {
    background: linear-gradient(135deg, #1a4d7c 0%, #2d6da8 100%);
    color: white;
    text-align: center;
}

.cta-card h3 {
    color: white;
}

.cta-card p {
    color: white;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.cta-card .btn {
    display: inline-block;
    margin-top: 0.5rem;
}

/* Services Detailed */
.services-detailed {
    max-width: 900px;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-detail h2 {
    color: #1a4d7c;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-detail h3 {
    color: #2d6da8;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail ul {
    margin-bottom: 1.5rem;
}

.service-detail ul li {
    margin-bottom: 0.8rem;
    color: #555;
}

.service-detail ul li strong {
    color: #1a4d7c;
}

.service-benefits {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #2d6da8;
}

.service-benefits h4 {
    color: #1a4d7c;
    margin-bottom: 0.5rem;
}

.service-benefits p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a4d7c 0%, #2d6da8 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #1a4d7c;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.contact-form button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    color: #1a4d7c;
    margin-bottom: 0.5rem;
}

.info-block p {
    color: #555;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #2d6da8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #1a4d7c;
}

.map-section {
    margin-top: 3rem;
    text-align: center;
}

.map-section h2 {
    color: #1a4d7c;
    margin-bottom: 1rem;
}

.map-section p {
    color: #666;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #1a4d7c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #2d6da8;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-block {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #2d6da8;
}

.contact-block p {
    margin-bottom: 0.5rem;
}

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

/* Resources Page */
.resources-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category {
    background: #2d6da8;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.date {
    color: #999;
    font-size: 0.9rem;
}

.blog-card h2 {
    color: #1a4d7c;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #2d6da8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #1a4d7c;
}

.resources-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.resources-section h2 {
    color: #1a4d7c;
    text-align: center;
    margin-bottom: 2rem;
}

.whitepaper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.whitepaper-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid #2d6da8;
}

.whitepaper-item h3 {
    color: #1a4d7c;
    margin-bottom: 1rem;
}

.whitepaper-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.webinar-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.webinar-section h2 {
    color: #1a4d7c;
    text-align: center;
    margin-bottom: 2rem;
}

.webinar-grid {
    display: grid;
    gap: 2rem;
}

.webinar-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.webinar-date {
    background: #1a4d7c;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.webinar-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.webinar-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.webinar-details {
    flex: 1;
}

.webinar-details h3 {
    color: #1a4d7c;
    margin-bottom: 0.5rem;
}

.webinar-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.webinar-time {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem !important;
}

.newsletter-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
}

.newsletter-section h2 {
    color: #1a4d7c;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    border: none;
    cursor: pointer;
}

/* Portal Page */
.portal-hero {
    background: linear-gradient(135deg, #1a4d7c 0%, #2d6da8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.portal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.portal-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.portal-section {
    padding: 60px 0;
}

.portal-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.portal-card {
    background: white;
}

.portal-card h2 {
    color: #1a4d7c;
    margin-bottom: 1rem;
}

.portal-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.portal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #1a4d7c;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.portal-notice {
    background: #fff8e1;
    border-left: 4px solid #ffa726;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.portal-notice h3 {
    color: #e65100;
    margin-bottom: 1rem;
}

.portal-notice p {
    color: #555;
    margin-bottom: 1rem;
}

.portal-notice ul {
    margin: 0;
    padding-left: 1.5rem;
}

.portal-notice ul li {
    color: #555;
}

.portal-cta {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.portal-cta h3 {
    color: #1a4d7c;
    margin-bottom: 0.5rem;
}

.portal-cta p {
    margin-bottom: 1rem;
}

.portal-sidebar {
    position: sticky;
    top: 100px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6da8;
    font-weight: bold;
}

/* Active navigation link */
.nav-links a.active {
    color: #2d6da8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .content-grid,
    .contact-grid,
    .portal-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .webinar-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Article Pages */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #2d6da8;
    border-radius: 4px;
}

.article-content h2 {
    color: #1a4d7c;
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-content h2:first-of-type {
    margin-top: 1rem;
}

.article-content h3 {
    color: #2d6da8;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h4 {
    color: #1a4d7c;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-content p {
    color: #444;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #444;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.article-content a {
    color: #2d6da8;
    text-decoration: none;
    border-bottom: 1px solid #2d6da8;
    transition: all 0.3s;
}

.article-content a:hover {
    color: #1a4d7c;
    border-bottom-color: #1a4d7c;
}

.article-content .info-block {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content .info-block h4 {
    margin-top: 0;
}

.article-cta {
    background: linear-gradient(135deg, #1a4d7c 0%, #2d6da8 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    color: white;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.article-references {
    border-top: 2px solid #e0e0e0;
    padding-top: 2rem;
    margin-top: 3rem;
}

.article-references h3 {
    color: #1a4d7c;
    margin-bottom: 1rem;
}

.article-references ul {
    list-style: none;
    padding-left: 0;
}

.article-references li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.article-references li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d6da8;
    font-weight: bold;
}

.article-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}
