@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0544A4 0%, #0a5cc4 100%);
    color: white;
    padding: 0.9rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-img {
    height: 35px;
    width: auto;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.nav-links a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-image {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 450px;
    width: 100%;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(5, 68, 164, 0.7) 0%, rgba(10, 92, 196, 0.8) 100%);
    padding: 4.5rem 0;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.hero .container {
    text-align: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.7rem;
    margin-bottom: 0.9rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: white;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 31px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0544A4 0%, #0a5cc4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(5, 68, 164, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 68, 164, 0.5);
    background: linear-gradient(135deg, #033878 0%, #0544A4 100%);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

.content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3.6rem 0;
    margin: 0;
}

.content h1 {
    color: #0544A4;
    margin-bottom: 1.35rem;
    font-size: 2.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.content h2 {
    color: #0544A4;
    margin-top: 2.7rem;
    margin-bottom: 1.35rem;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 0.72rem;
    display: inline-block;
}

.content h3 {
    color: #0a5cc4;
    margin-top: 1.35rem;
    margin-bottom: 0.9rem;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.content p {
    margin-bottom: 1.35rem;
    color: #555;
    line-height: 1.9;
    font-size: 1rem;
}

.content ul {
    margin-left: 1.8rem;
    margin-bottom: 1.35rem;
}

.content ul li {
    margin-bottom: 0.9rem;
    color: #555;
    line-height: 1.8;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.25rem;
    margin: 2.7rem 0;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 2.25rem;
    border-radius: 12px;
    border-left: 5px solid #0544A4;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(5, 68, 164, 0.2);
}

.feature-card h3 {
    color: #0544A4;
    margin-bottom: 0.9rem;
    margin-top: 0;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.25rem;
    margin: 2.7rem 0;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 1.8rem;
    border-radius: 12px;
    border-top: 5px solid #0544A4;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(5, 68, 164, 0.2);
    border-top-color: #ffd700;
}

.service-card h3 {
    color: #0544A4;
    margin-bottom: 0.9rem;
    margin-top: 0;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.9rem;
}

/* Lists */
.focus-list {
    list-style: none;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.9rem;
    margin: 1.8rem 0;
}

.focus-list li {
    padding: 1.08rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-left: 4px solid #0544A4;
    border-radius: 6px;
    color: #555;
    font-weight: 500;
}

.focus-list li:before {
    content: "✓";
    color: #ffd700;
    font-weight: bold;
    margin-right: 0.72rem;
    font-size: 1.2rem;
}

/* Specialty List */
.specialty-list {
    list-style: none;
    margin-left: 0;
    margin: 1.35rem 0;
}

.specialty-list li {
    padding: 0.72rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
}

.specialty-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0544A4;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Help List */
.help-list {
    list-style: none;
    margin-left: 0;
}

.help-list li {
    padding: 0.72rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
}

.help-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0544A4;
    font-weight: bold;
}

/* Highlight List */
.highlight-list {
    list-style: none;
    margin-left: 0;
    margin: 1.8rem 0;
}

.highlight-list li {
    padding: 0.9rem 1.35rem;
    margin-bottom: 0.72rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-left: 4px solid #0544A4;
    color: #555;
    border-radius: 6px;
}

.highlight-list li:before {
    content: "✓";
    color: #ffd700;
    font-weight: bold;
    margin-right: 0.72rem;
    font-size: 1.1rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 2.25rem;
    border-radius: 12px;
    border-left: 5px solid #0544A4;
    margin: 2.25rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.highlight-box p {
    margin-bottom: 1.35rem;
    color: #333;
    font-weight: 500;
    line-height: 1.8;
}

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

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin: 2.25rem 0;
}

.contact-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 2.25rem;
    border-radius: 12px;
    border-left: 5px solid #0544A4;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.contact-card h3 {
    color: #0544A4;
    margin-bottom: 0.9rem;
    margin-top: 0;
}

.contact-card a {
    color: #0544A4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Contact Methods */
.contact-methods {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 2.25rem;
    border-radius: 12px;
    border-left: 5px solid #0544A4;
    margin: 2.25rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-methods a {
    color: #0544A4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-methods a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin: 2.25rem 0;
}

.resource-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 2.25rem;
    border-radius: 12px;
    border-top: 5px solid #0544A4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.resource-card h3 {
    color: #0544A4;
    margin-bottom: 0.9rem;
    margin-top: 0;
}

.resource-card p {
    color: #666;
}

/* Tagline */
.tagline {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 1.8rem;
    border-radius: 12px;
    margin: 2.7rem 0;
    color: #0544A4;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Podcast Feed */
.podcast-feed {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
    padding: 2.25rem;
    border-radius: 12px;
    margin: 2.25rem 0;
    border-left: 5px solid #0544A4;
}

.podcast-episode {
    background: white;
    padding: 1.8rem;
    margin-bottom: 1.35rem;
    border-left: 4px solid #0544A4;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.podcast-episode:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(5, 68, 164, 0.15);
}

.podcast-episode h3 {
    color: #0544A4;
    margin-bottom: 0.45rem;
    margin-top: 0;
    font-size: 1.1rem;
}

.podcast-episode p {
    margin: 0.45rem 0;
    font-size: 0.9rem;
    color: #666;
}

.podcast-episode a {
    display: inline-block;
    margin-top: 0.9rem;
    padding: 0.63rem 1.08rem;
    background: linear-gradient(135deg, #0544A4 0%, #0a5cc4 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.podcast-episode a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 68, 164, 0.3);
}

.podcast-logo {
    text-align: center;
    margin: 2.25rem 0;
}

.podcast-logo img {
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.rss-feed-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 1.8rem;
    border-radius: 8px;
    margin: 1.8rem 0;
    border-left: 4px solid #0544A4;
}

.rss-feed-box h4 {
    color: #0544A4;
    margin-bottom: 0.9rem;
    font-size: 1rem;
}

.rss-feed-box a {
    display: inline-block;
    padding: 0.63rem 1.08rem;
    background: linear-gradient(135deg, #0544A4 0%, #0a5cc4 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.rss-feed-box a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 68, 164, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0544A4 0%, #033878 100%);
    color: white;
    text-align: center;
    padding: 2.7rem 0;
    margin-top: 2.7rem;
}

footer p {
    margin: 0.72rem 0;
    color: #e0e0e0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1.35rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.72rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .content h2 {
        font-size: 1.35rem;
    }

    .content h1 {
        font-size: 1.6rem;
    }

    .features, .services-grid, .resources-grid, .contact-info {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.8rem;
    }

    .focus-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.35rem;
    }

    .content h2 {
        font-size: 1.15rem;
    }

    .nav-links {
        gap: 0.45rem;
        font-size: 0.76rem;
    }
}
