/*
Theme Name: AiCopyright.com
Description: A custom WordPress theme for AiCopyright.com
Author: Justin Gluska
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Reset and global styles */
* {
    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;
    font-size: 19px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header styles */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
    position: relative;
}

.header-top {
    background-color: #fff;
    padding: 12px 0;
}

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

.site-branding .site-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c5aa0;
    text-decoration: none;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.site-branding .site-title a {
    color: #2c5aa0;
    text-decoration: none;
}

.site-branding .site-description {
    font-size: 13px;
    color: #666;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-icon {
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

.free-guide-btn {
    background: linear-gradient(135deg, #d4544a 0%, #c94a4a 100%);
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 8px rgba(201, 74, 74, 0.3);
    transition: all 0.3s ease;
}

.free-guide-btn:hover {
    background: linear-gradient(135deg, #c94a4a 0%, #b03e3e 100%);
    box-shadow: 0 5px 15px rgba(201, 74, 74, 0.4);
}

.main-navigation {
    background-color: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    padding: 0;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 18px 24px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.main-navigation a:hover {
    background-color: #e9ecef;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: visible;
    z-index: 5;
}

.hero-background {
    padding: 90px 0 130px;
    background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)), url('assets/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-form {
    flex: 0 0 400px;
}

.hero-form-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-form-card h3 {
    color: #2c5aa0;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.hero-form-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form-card input,
.hero-form-card select {
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.hero-form-card input:focus,
.hero-form-card select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.hero-form-card button {
    margin-top: 5px;
}

.hero-badge {
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15), 0 3px 10px rgba(0,0,0,0.1);
    border: 5px solid #e8f1f8;
    z-index: 20;
}

.badge-icon {
    font-size: 28px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: none;
}

.btn-primary {
    background: linear-gradient(135deg, #d4544a 0%, #c94a4a 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(201, 74, 74, 0.3);
}

/* .btn-primary:hover {
    background: linear-gradient(135deg, #c94a4a 0%, #b03e3e 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(201, 74, 74, 0.4);
} */

.btn-secondary {
    background: linear-gradient(135deg, #d4544a 0%, #c94a4a 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(201, 74, 74, 0.3);
    transition: all 0.3s ease;
}

/* .btn-secondary:hover {
    background: linear-gradient(135deg, #c94a4a 0%, #b03e3e 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(201, 74, 74, 0.4);
} */

.btn-outline {
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    border: 2px solid #2c5aa0;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #245191 0%, #1d3f73 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(44, 90, 160, 0.4);
}

.btn-social {
    background-color: #4267B2;
    color: white;
    margin-right: 10px;
}

.arrow {
    margin-left: 8px;
}

/* Learn About Section */
.learn-about-section {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(225deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(315deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(135deg, #2c5aa0 0%, #1e4275 100%);
    background-size: 80px 80px, 80px 80px, 80px 80px, 80px 80px, 100% 100%;
    background-position: 0 0, 40px 0, 40px -40px, 0px 40px, 0 0;
    padding: 90px 0 150px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.2);
    z-index: 1;
}

.learn-about-section .shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.learn-about-section .shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: rotateX(180deg);
}

.learn-about-section .shape-divider path {
    fill: #ffffff;
}

.learn-about-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.topic-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1), 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.topic-item:hover {
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15), 0 4px 10px rgba(0,0,0,0.1);
}

.topic-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.topic-item h3 {
    color: #2c5aa0;
    font-size: 18px;
    font-weight: 600;
}

/* Resources Section */
.resources-section {
    padding: 90px 0;
    background-color: white;
}

.resources-section h2 {
    font-size: 38px;
    color: #2c5aa0;
    margin-bottom: 28px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
}

.resources-section > .container > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 400;
}

.resource-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    color: white;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.25), 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.3), 0 5px 15px rgba(0,0,0,0.15);
}

.card-image {
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.resource-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

/* Find Resources Section */
.find-resources-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.find-resources-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 24px;
    font-weight: 700;
}

.find-resources-section > .container > p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.location-finder {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-finder h3 {
    color: #2c5aa0;
    font-size: 26px;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.finder-form {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.us-map {
    width: 180px;
    height: 140px;
    background: #e8f1f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
}

.finder-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
}

.form-select, .form-input {
    padding: 16px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
    flex: 1;
    transition: all 0.3s ease;
    font-weight: 500;
    background: white;
}

.form-select:focus, .form-input:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.finder-inputs .btn {
    flex: 0 0 auto;
    padding: 16px 32px;
    white-space: nowrap;
}

/* Contributors Section */
.contributors-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #e8f1f8 0%, #ddeaf6 100%);
}

.contributors-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contributors-text {
    flex: 1;
}

.contributors-text h2 {
    font-size: 38px;
    color: #2c5aa0;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.contributors-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-weight: 400;
}

.contributors-text blockquote {
    font-style: italic;
    font-size: 16px;
    color: #2c5aa0;
    margin: 30px 0;
}

.contributors-text cite {
    font-weight: 600;
    font-style: normal;
}

.contributors-grid {
    flex: 1;
}

.contributors-grid h3 {
    color: #2c5aa0;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.contributor-profiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contributor {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.1), 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.contributor:hover {
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15), 0 3px 12px rgba(0,0,0,0.08);
}

.contributor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="40" fill="%23e8e8e8"/><text x="40" y="45" text-anchor="middle" fill="%23666" font-size="10">Photo</text></svg>') center/cover;
    margin: 0 auto 15px;
}

.contributor h4 {
    color: #2c5aa0;
    font-size: 16px;
    margin-bottom: 5px;
}

.contributor p {
    font-size: 14px;
    color: #666;
}

/* Featured Section */
.featured-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.featured-section h3 {
    color: #2c5aa0;
    font-size: 24px;
    margin-bottom: 40px;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    opacity: 0.7;
}

/* Support Section */
.support-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.support-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.support-text {
    flex: 1;
}

.support-text h2 {
    font-size: 38px;
    color: #2c5aa0;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.support-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.support-image {
    flex: 1;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23e8f1f8"/><text x="200" y="150" text-anchor="middle" fill="%23666" font-size="16">Support Team Image</text></svg>') center/cover;
    border-radius: 12px;
}

.support-team h3 {
    color: #2c5aa0;
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.support-team > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.team-profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.12), 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.15), 0 5px 20px rgba(0,0,0,0.1);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%23e8e8e8"/><text x="50" y="55" text-anchor="middle" fill="%23666" font-size="12">Photo</text></svg>') center/cover;
    margin: 0 auto 20px;
}

.team-member h4 {
    color: #2c5aa0;
    font-size: 20px;
    margin-bottom: 8px;
}

.team-member p {
    font-size: 19px;
    color: #666;
    margin-bottom: 20px;
}

.team-member p:last-of-type {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Events and Community Section */
.events-community-section {
    padding: 90px 0;
    background-color: white;
}

.events-community-section > .container > h3 {
    color: #2c5aa0;
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.three-column h3 {
    color: #2c5aa0;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

.event-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.event-date {
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-details h4 {
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}

.view-all {
    color: #c94a4a;
    text-decoration: none;
    font-weight: 600;
}

.social-buttons {
    margin-top: 20px;
}

.organization-logos {
    margin-top: 20px;
}

.org-logo {
    background: #e8f1f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
    color: #2c5aa0;
}

/* Blog Section */
.blog-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.blog-section h2 {
    color: #2c5aa0;
    font-size: 38px;
    margin-bottom: 28px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.blog-section > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.three-column p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.event-details p {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #2c5aa0;
    border: 2px solid #e8e8e8;
    cursor: pointer;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.blog-post {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.12), 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.blog-post:hover {
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.15), 0 5px 20px rgba(0,0,0,0.1);
}

.post-image {
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23e8f1f8"/><text x="200" y="100" text-anchor="middle" fill="%23666" font-size="16">Post Image</text></svg>') center/cover;
}

.post-content {
    padding: 30px;
}

.post-content h3 {
    color: #2c5aa0;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.post-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more, .view-more {
    color: #c94a4a;
    text-decoration: none;
    font-weight: 600;
}

.view-more {
    display: block;
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background-color: white;
}

.faq-section h2 {
    color: #2c5aa0;
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    color: #2c5aa0;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.faq-item p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* CTA Section */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #e8f1f8 0%, #ddeaf6 100%);
}

.cta-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.free-label {
    background-color: #c94a4a;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    align-self: flex-start;
}

.cta-text h2 {
    color: #2c5aa0;
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-features li {
    font-size: 17px;
    color: #444;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
}

.guide-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

.cta-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-form h3 {
    color: #2c5aa0;
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.form-tabs {
    display: flex;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 30px;
}

.tab {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 15px;
    cursor: pointer;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab.active {
    color: #2c5aa0;
    border-bottom-color: #2c5aa0;
    font-weight: 600;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-fields input, .form-fields select {
    padding: 16px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-fields input:focus, .form-fields select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.privacy-notice {
    margin-top: 20px;
    font-size: 13px;
}

.privacy-notice input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

/* Footer styles */
.site-footer {
    background-color: white;
    border-top: 1px solid #e8e8e8;
    padding: 60px 0 40px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: #2c5aa0;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section h4 {
    color: #2c5aa0;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact .phone {
    color: #2c5aa0;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.footer-accreditations {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
}

.accreditation-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.badge {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto 20px;
    text-align: left;
}

.disclaimer-text p {
    margin-bottom: 15px;
}

.disclaimer-text a {
    color: #2c5aa0;
    text-decoration: underline;
}

.disclaimer-text a:hover {
    color: #1a3d6b;
}

.modified-date {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2c5aa0;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .support-content,
    .contributors-content,
    .cta-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .topic-grid,
    .resource-cards,
    .contributor-profiles,
    .team-profiles {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .three-column {
        grid-template-columns: 1fr;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .finder-form {
        flex-direction: column;
        gap: 20px;
    }
    
    .finder-inputs {
        flex-wrap: wrap;
    }
}

/* Link styles */
a {
    color: #2c5aa0;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d3f73;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-page {
    background-color: #fff;
}

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #f0f6fc 0%, #e8f1f8 50%, #d4e9f7 100%);
    padding: 80px 0 60px;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #2c5aa0;
    text-decoration: none;
}

.breadcrumb span {
    color: #666;
}

.about-hero-section h1 {
    font-size: 48px;
    color: #2c5aa0;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Mission Statement Section */
.mission-section {
    padding: 90px 0;
    background-color: #fff;
}

.mission-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.mission-text {
    flex: 2;
}

.mission-text h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 28px;
    font-weight: 700;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e8f1f8 0%, #ddeaf6 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2c5aa0;
    border: 2px solid rgba(44, 90, 160, 0.1);
}

.placeholder-image p {
    margin-top: 15px;
    font-weight: 600;
    font-size: 16px;
}

/* Story Section */
.story-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.story-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border-left: 4px solid #2c5aa0;
}

.timeline-year {
    flex: 0 0 80px;
    font-size: 24px;
    font-weight: 800;
    color: #2c5aa0;
    text-align: center;
    background: linear-gradient(135deg, #e8f1f8 0%, #ddeaf6 100%);
    border-radius: 8px;
    padding: 15px 5px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Services Section */
.services-section {
    padding: 90px 0;
    background-color: #fff;
}

.services-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.12);
}

.service-icon {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Leadership Section */
.leadership-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.leadership-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.leadership-intro {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.06);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.leader-card:hover {
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.15);
}

.leader-photo {
    flex: 0 0 120px;
}

.placeholder-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e8f1f8 0%, #ddeaf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5aa0;
    border: 3px solid rgba(44, 90, 160, 0.1);
}

.leader-info h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 8px;
    font-weight: 700;
}

.leader-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.leader-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.leader-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.credential {
    background: linear-gradient(135deg, #e8f1f8 0%, #ddeaf6 100%);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #2c5aa0;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 90px 0;
    background-color: #fff;
}

.why-choose-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-choose-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.12);
}

.why-icon {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.why-choose-item h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-choose-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Recognition Section */
.recognition-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    text-align: center;
}

.recognition-section h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.recognition-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.awards-section {
    margin-top: 60px;
}

.awards-section h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 40px;
    font-weight: 700;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.award-item:hover {
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.12);
}

.award-icon {
    font-size: 32px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.award-item h4 {
    font-size: 16px;
    color: #2c5aa0;
    margin-bottom: 8px;
    font-weight: 700;
}

.award-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* About CTA Section */
.about-cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    text-align: center;
}

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

.about-cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #d4544a 0%, #c94a4a 100%);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-section h1 {
        font-size: 32px;
    }

    .mission-content {
        flex-direction: column;
        gap: 40px;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .timeline-year {
        flex: none;
        align-self: center;
    }

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

    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .leader-photo {
        flex: none;
        align-self: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page {
    background-color: #fff;
}

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #f0f6fc 0%, #e8f1f8 50%, #d4e9f7 100%);
    padding: 80px 0 60px;
}

.contact-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-section h1 {
    font-size: 48px;
    color: #2c5aa0;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.contact-method {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.contact-method:hover {
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.12);
}

.contact-icon {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-primary {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: 700;
    margin-bottom: 8px;
    text-decoration: none;
}

.contact-primary:hover {
    color: #1d3f73;
}

.contact-secondary {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.contact-hours {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.contact-form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-content {
    flex: 2;
}

.form-intro h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.benefit-item i {
    color: #28a745;
    font-size: 16px;
}

.benefit-item span {
    font-size: 15px;
    color: #555;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.12);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

.form-disclaimer {
    margin-top: 20px;
}

.form-disclaimer small {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Form Sidebar */
.form-sidebar {
    flex: 1;
}

.contact-card,
.testimonial-card,
.trust-badges {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-card blockquote {
    font-size: 14px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-card cite {
    font-size: 13px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.trust-badges h4 {
    font-size: 16px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badges .badge {
    background: linear-gradient(135deg, #e8f1f8 0%, #ddeaf6 100%);
    color: #2c5aa0;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-faq-section h2 {
    font-size: 32px;
    color: #2c5aa0;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-grid .faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.faq-grid .faq-item h3 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-grid .faq-item p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Office Locations Section */
.office-locations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.office-locations-section h2 {
    font-size: 32px;
    color: #2c5aa0;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.office-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.office-card:hover {
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.12);
}

.office-card h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.office-address p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.office-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.office-hours h4 {
    font-size: 14px;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 700;
}

.office-hours p {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

/* Emergency Contact Section */
.emergency-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4544a 0%, #c94a4a 100%);
    color: white;
    text-align: center;
}

.emergency-content {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.emergency-text {
    flex: 1;
    text-align: left;
}

.emergency-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.emergency-text p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-contact {
    flex: 1;
    text-align: center;
}

.btn-emergency {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.emergency-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
}

/* Shortcode Instructions (Hidden by default) */
.shortcode-instructions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    margin-top: 20px;
}

.shortcode-instructions h4 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

.shortcode-instructions p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.shortcode-instructions ul {
    padding-left: 20px;
}

.shortcode-instructions li {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.shortcode-instructions code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 12px;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-section h1 {
        font-size: 32px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-form-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

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

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

    .emergency-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .emergency-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LAWYER DIRECTORY STYLES
   ======================================== */

.lawyer-directory {
    background-color: #fff;
}

/* Directory Hero Section */
.directory-hero-section {
    background: linear-gradient(135deg, #f0f6fc 0%, #e8f1f8 50%, #d4e9f7 100%);
    padding: 80px 0 60px;
}

.directory-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.directory-hero-section h1 {
    font-size: 48px;
    color: #2c5aa0;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.stat-item .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search and Filter Section */
.search-filter-section {
    padding: 60px 0;
    background-color: #fff;
}

.search-wrapper h2 {
    font-size: 32px;
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.lawyer-search-form {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.12);
    border: 1px solid rgba(44, 90, 160, 0.06);
    margin-top: 30px;
}

.search-row {
    display: flex;
    gap: 20px;
    align-items: end;
    margin-bottom: 20px;
}

.search-group {
    flex: 1;
}

.search-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}

.search-input-wrapper input,
.search-input-wrapper select {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-input-wrapper input:focus,
.search-input-wrapper select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.search-btn {
    padding: 14px 30px;
    white-space: nowrap;
}

.advanced-filters {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid #e8e8e8;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.filter-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-toggle {
    text-align: center;
    margin-top: 20px;
}

.filter-toggle a {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Lawyers Listing Section */
.lawyers-listing-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
}

.results-info h2 {
    font-size: 28px;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 700;
}

.results-count {
    color: #666;
    font-weight: 400;
}

.results-info p {
    font-size: 14px;
    color: #666;
}

.results-sorting {
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-sorting label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.results-sorting select {
    padding: 8px 12px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 14px;
}

/* Sponsored Lawyers */
.sponsored-lawyers {
    margin-bottom: 60px;
}

.sponsored-lawyers h3 {
    font-size: 28px;
    color: #2c5aa0;
    margin-bottom: 30px;
    font-weight: 700;
}

.lawyers-grid.sponsored {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Nearby Lawyers */
.nearby-lawyers {
    margin-bottom: 50px;
}

.nearby-lawyers h3 {
    font-size: 28px;
    color: #2c5aa0;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Lawyer Cards */
.lawyer-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.lawyer-card:hover {
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.15);
}

.lawyer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4544a 0%, #c94a4a 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.lawyer-photo {
    text-align: center;
    margin-bottom: 20px;
}

.lawyer-photo .placeholder-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.lawyer-info h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
}

.lawyer-firm {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 15px;
}

.lawyer-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 14px;
}

.rating-text {
    font-size: 13px;
    color: #666;
}

.lawyer-location {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.lawyer-location i {
    color: #2c5aa0;
    margin-right: 5px;
}

.lawyer-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.specialty {
    background: linear-gradient(135deg, #e8f1f8 0%, #ddeaf6 100%);
    color: #2c5aa0;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.lawyer-experience {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.lawyer-highlights ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.lawyer-highlights li {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.lawyer-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.lawyer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lawyer-actions .btn {
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2c5aa0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    border-color: #2c5aa0;
    background: #f8f9fa;
}

/* List View Lawyer Cards */
.lawyers-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lawyer-card.list-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
}

.lawyer-card.list-item .lawyer-photo {
    flex: 0 0 80px;
    margin-bottom: 0;
}

.lawyer-card.list-item .lawyer-info {
    flex: 1;
    text-align: left;
}

.lawyer-card.list-item .lawyer-actions {
    flex: 0 0 200px;
    align-self: flex-start;
}

.lawyer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.lawyer-header h3 {
    margin: 0;
    text-align: left;
}

.lawyer-summary {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.lawyer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.feature {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

/* Pagination */
.pagination-section {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    padding: 15px 40px;
    margin-bottom: 20px;
}

.pagination-info p {
    font-size: 14px;
    color: #666;
}

.pagination-info a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: #fff;
}

.how-it-works-section h2 {
    font-size: 32px;
    color: #2c5aa0;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-item {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Trust & Safety Section */
.trust-safety-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 2;
}

.trust-text h2 {
    font-size: 32px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.verification-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.verification-item i {
    color: #28a745;
    font-size: 16px;
}

.verification-item span {
    font-size: 15px;
    color: #555;
}

.trust-badges {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.badge-item i {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.badge-item span {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

/* Directory FAQ Section */
.directory-faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.directory-faq-section h2 {
    font-size: 32px;
    color: #2c5aa0;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.directory-faq-section .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Directory CTA Section */
.directory-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    text-align: center;
}

.directory-cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.directory-cta-section p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design for Lawyer Directory */
@media (max-width: 1024px) {
    .listing-layout {
        flex-direction: column;
    }

    .listing-sidebar {
        flex: none;
    }

    .lawyers-grid.featured {
        grid-template-columns: 1fr;
    }

    .filters-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .directory-hero-section h1 {
        font-size: 32px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .search-row {
        flex-direction: column;
        gap: 20px;
    }

    .filters-row {
        grid-template-columns: 1fr;
    }

    .lawyer-card.list-item {
        flex-direction: column;
        text-align: center;
    }

    .lawyer-card.list-item .lawyer-info {
        text-align: center;
    }

    .lawyer-card.list-item .lawyer-actions {
        flex: none;
        align-self: stretch;
    }

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

    .trust-content {
        flex-direction: column;
        gap: 40px;
    }

    .directory-faq-section .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .results-header {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== BLOG ARCHIVE TEMPLATE STYLES ===== */

/* Archive Hero Section */
.archive-hero-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.archive-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.archive-hero-section .container {
    position: relative;
    z-index: 2;
}

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

.archive-hero-section .archive-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.archive-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.archive-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.archive-meta .meta-item i {
    color: #ffd700;
}

/* Archive Layout */
.archive-layout {
    display: flex;
    gap: 40px;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.archive-main {
    flex: 2;
}

.archive-sidebar {
    flex: 1;
    max-width: 350px;
}

/* Archive Filters */
.archive-filters {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.archive-filters h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 600;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.filter-group select,
.filter-group input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-group select:focus,
.filter-group input[type="text"]:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.filter-tag {
    background: #f8f9fa;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.filter-tag:hover,
.filter-tag.active {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.15);
}

.post-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4544a;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: #2c5aa0;
}

.post-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.post-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card h3 a:hover {
    color: #2c5aa0;
}

.post-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #245191;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Sidebar Widgets */
.widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.widget h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #2c5aa0;
}

.popular-posts .post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.popular-posts .post-item:last-child {
    border-bottom: none;
}

.popular-posts .post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-posts .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-posts .post-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.3;
}

.popular-posts .post-info h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-posts .post-info h4 a:hover {
    color: #2c5aa0;
}

.popular-posts .post-date {
    font-size: 12px;
    color: #666;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    text-align: center;
}

.newsletter-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input[type="email"] {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    background: #d4544a;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #c24c43;
}

/* Archive Pagination */
.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.page-numbers.prev,
.page-numbers.next {
    width: auto;
    padding: 0 15px;
    gap: 8px;
}

/* No Posts Found */
.no-posts-found {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
}

.no-posts-found h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.no-posts-found p {
    color: #666;
    margin-bottom: 25px;
}

.no-posts-found .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2c5aa0;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.no-posts-found .btn:hover {
    background: #245191;
}

/* Responsive Design for Archive */
@media (max-width: 1024px) {
    .archive-layout {
        flex-direction: column;
    }

    .archive-sidebar {
        max-width: none;
    }

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

@media (max-width: 768px) {
    .archive-hero-section h1 {
        font-size: 36px;
    }

    .archive-hero-section .archive-description {
        font-size: 18px;
    }

    .archive-meta {
        flex-direction: column;
        gap: 15px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .archive-layout {
        padding: 50px 0;
        gap: 30px;
    }

    .archive-filters {
        padding: 20px;
    }

    .widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .archive-hero-section {
        padding: 80px 0 60px;
    }

    .archive-hero-section h1 {
        font-size: 28px;
    }

    .post-content {
        padding: 20px;
    }

    .newsletter-form {
        gap: 10px;
    }
}

/* ===== SINGLE BLOG POST TEMPLATE STYLES ===== */

/* Single Post Hero */
.single-post-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.single-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.single-post-hero .container {
    position: relative;
    z-index: 2;
}

.post-breadcrumbs {
    margin-bottom: 20px;
}

.post-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.post-breadcrumbs a:hover {
    color: white;
}

.post-breadcrumbs span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 10px;
}

.single-post-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.post-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.post-hero-meta .meta-item i {
    color: #ffd700;
}

.post-excerpt-hero {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 30px;
}

.post-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.share-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Single Post Layout */
.single-post-layout {
    display: flex;
    gap: 40px;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.single-post-main {
    flex: 2;
}

.single-post-sidebar {
    flex: 1;
    max-width: 350px;
}

/* Post Content Container */
.post-content-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    margin-bottom: 40px;
}

.post-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content-wrapper {
    padding: 40px;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.table-of-contents h3 {
    color: #2c5aa0;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.toc-list a:hover {
    color: #2c5aa0;
}

.toc-list .toc-level-2 {
    padding-left: 20px;
}

.toc-list .toc-level-3 {
    padding-left: 40px;
}

/* Post Content Styling */
.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.post-content h2 {
    font-size: 32px;
    color: #2c5aa0;
    margin: 40px 0 20px;
    font-weight: 700;
    line-height: 1.3;
}

.post-content h3 {
    font-size: 24px;
    color: #333;
    margin: 30px 0 15px;
    font-weight: 600;
}

.post-content h4 {
    font-size: 20px;
    color: #333;
    margin: 25px 0 12px;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #2c5aa0;
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: #555;
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}

.post-content .highlight-box {
    background: linear-gradient(135deg, #fff5f5 0%, #fef7f7 100%);
    border: 2px solid #d4544a;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.post-content .highlight-box h4 {
    color: #d4544a;
    margin-top: 0;
}

.post-content .info-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #f5f9ff 100%);
    border: 2px solid #2c5aa0;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.post-content .info-box h4 {
    color: #2c5aa0;
    margin-top: 0;
}

/* Post Tags and Categories */
.post-taxonomy {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding: 25px 0;
    border-top: 2px solid #f8f9fa;
    border-bottom: 2px solid #f8f9fa;
}

.post-categories,
.post-tags {
    flex: 1;
}

.post-categories h4,
.post-tags h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-links,
.tag-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-link,
.tag-link {
    background: #f8f9fa;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.category-link:hover,
.tag-link:hover {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

/* Multi-Author Bio */
.multi-author-bio {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.multi-author-bio h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

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

.author-card {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.author-card:hover {
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.15);
    border-color: #2c5aa0;
}

.author-card .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-card .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card .author-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-card .author-title {
    color: #2c5aa0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-card .author-credentials {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.author-card .credential {
    background: white;
    color: #666;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

.author-hover-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.author-card:hover .author-hover-description {
    opacity: 1;
    visibility: visible;
}

.author-hover-description p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.author-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.author-actions .btn {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.author-actions .btn-sm {
    padding: 6px 12px;
    font-size: 11px;
}

.author-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.author-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.author-actions .btn-primary {
    background: #d4544a;
    color: white;
    border: 1px solid #d4544a;
}

.author-actions .btn-primary:hover {
    background: #c24c43;
    border-color: #c24c43;
}

.team-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.team-cta p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-cta .btn {
    background: #d4544a;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.team-cta .btn:hover {
    background: #c24c43;
}

/* Related Posts */
.related-posts {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.related-posts h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-post {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post-thumb {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .related-post-thumb img {
    transform: scale(1.05);
}

.related-post h4 {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

.related-post h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post h4 a:hover {
    color: #2c5aa0;
}

.related-post-meta {
    font-size: 12px;
    color: #666;
}

/* Social Sharing */
.social-sharing {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    text-align: center;
}

.social-sharing h3 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 600;
}

.sharing-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: #666;
}

/* Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(44, 90, 160, 0.1);
    z-index: 1000;
}

.reading-progress-fill {
    height: 100%;
    background: #2c5aa0;
    width: 0%;
    transition: width 0.3s ease;
}

/* Comments Section */
.comments-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.comments-section h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.nav-post {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.nav-post:hover {
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.12);
}

.nav-post.prev {
    text-align: left;
}

.nav-post.next {
    text-align: right;
}

.nav-post-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.nav-post h4 {
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.nav-post a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-post a:hover {
    color: #2c5aa0;
}

/* Responsive Design for Single Post */
@media (max-width: 1024px) {
    .single-post-layout {
        flex-direction: column;
    }

    .single-post-sidebar {
        max-width: none;
    }

    .related-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .single-post-hero h1 {
        font-size: 36px;
    }

    .post-hero-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .post-excerpt-hero {
        font-size: 18px;
    }

    .post-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-post-layout {
        padding: 50px 0;
        gap: 30px;
    }

    .post-content-wrapper {
        padding: 25px;
    }

    .post-content h2 {
        font-size: 28px;
    }

    .post-taxonomy {
        flex-direction: column;
        gap: 20px;
    }

    .author-header {
        flex-direction: column;
        text-align: center;
    }

    .author-contact {
        justify-content: center;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .post-navigation {
        flex-direction: column;
    }

    .sharing-buttons {
        gap: 8px;
    }

    .multi-author-bio {
        padding: 25px;
    }

    .authors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .author-card {
        padding: 20px;
    }

    .author-hover-description {
        position: static;
        opacity: 1;
        visibility: visible;
        background: #f0f7ff;
        color: #333;
        margin-top: 15px;
        padding: 20px;
    }

    .author-hover-description p {
        color: #555;
    }

    .author-actions .btn-secondary {
        background: #2c5aa0;
        color: white;
        border-color: #2c5aa0;
    }

    .team-cta {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .single-post-hero {
        padding: 100px 0 60px;
    }

    .single-post-hero h1 {
        font-size: 28px;
    }

    .post-content-wrapper {
        padding: 20px;
    }

    .post-content h2 {
        font-size: 24px;
    }

    .related-posts {
        padding: 25px;
    }

    .social-sharing {
        padding: 20px;
    }
}

/* ===== RISK ASSESSMENT QUIZ TEMPLATE STYLES ===== */

/* Quiz Hero Section */
.quiz-hero-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quiz-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.quiz-hero-section .container {
    position: relative;
    z-index: 2;
}

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

.quiz-hero-section .quiz-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.quiz-stat {
    text-align: center;
}

.quiz-stat .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.quiz-stat .stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Quiz Container */
.quiz-container {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.quiz-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

/* Quiz Progress */
.quiz-progress {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 12.5%;
}

/* Quiz Content */
.quiz-content {
    padding: 40px;
}

.question-container {
    margin-bottom: 40px;
}

.question-number {
    background: #2c5aa0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.question-text {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}

.question-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Answer Options */
.answer-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.answer-option:hover {
    border-color: #2c5aa0;
    background: #f0f7ff;
}

.answer-option.selected {
    border-color: #2c5aa0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f3ff 100%);
}

.answer-option .option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.option-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.3s ease;
}

.answer-option.selected .option-radio {
    border-color: #2c5aa0;
}

.answer-option.selected .option-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #2c5aa0;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.option-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid #f8f9fa;
}

.btn-prev {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-prev:hover {
    background: #5a6268;
}

.btn-prev:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-next {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-next:hover {
    background: #245191;
}

.btn-next:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Quiz Results */
.quiz-results {
    display: none;
    text-align: center;
    padding: 40px;
}

.quiz-results.show {
    display: block;
}

.results-header {
    margin-bottom: 40px;
}

.results-score {
    font-size: 72px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 10px;
    line-height: 1;
}

.results-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.results-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.risk-level {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.risk-level.low {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.risk-level.medium {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeaa7;
}

.risk-level.high {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Results Content */
.results-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.results-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.results-section h3 {
    color: #2c5aa0;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.results-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-section li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.results-section li:last-child {
    border-bottom: none;
}

.results-section li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/* Results Actions */
.results-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.results-actions .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #d4544a;
    color: white;
    border: 2px solid #d4544a;
}

.btn-primary:hover {
    background: #c24c43;
    border-color: #c24c43;
}

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

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
}

.btn-retake {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
}

.btn-retake:hover {
    background: #5a6268;
    border-color: #5a6268;
}

/* Why Take Quiz Section */
.why-quiz-section {
    padding: 80px 0;
    background: white;
}

.why-quiz-section h2 {
    font-size: 32px;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* FAQ Section */
.quiz-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quiz-faq-section h2 {
    font-size: 32px;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.faq-item h3 {
    color: #2c5aa0;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Quiz */
@media (max-width: 768px) {
    .quiz-hero-section h1 {
        font-size: 36px;
    }

    .quiz-hero-section .quiz-description {
        font-size: 18px;
    }

    .quiz-stats {
        flex-direction: column;
        gap: 20px;
    }

    .quiz-content {
        padding: 25px;
    }

    .question-text {
        font-size: 20px;
    }

    .quiz-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .results-score {
        font-size: 56px;
    }

    .results-title {
        font-size: 24px;
    }

    .results-actions {
        flex-direction: column;
        align-items: center;
    }

    .results-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

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

@media (max-width: 480px) {
    .quiz-hero-section {
        padding: 80px 0 60px;
    }

    .quiz-hero-section h1 {
        font-size: 28px;
    }

    .quiz-content {
        padding: 20px;
    }

    .quiz-progress {
        padding: 15px 20px;
    }

    .question-text {
        font-size: 18px;
    }

    .answer-option {
        padding: 15px;
    }

    .option-title {
        font-size: 16px;
    }

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

    .results-section {
        padding: 20px;
    }
}

/* ===== 404 ERROR PAGE TEMPLATE STYLES ===== */

/* Error Hero Section */
.error-hero-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.error-hero-section .container {
    position: relative;
    z-index: 2;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code h1 {
    font-size: 120px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
    color: #ffd700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.error-message h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.error-message p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Quick Actions Section */
.quick-actions-section {
    padding: 80px 0;
    background: white;
}

.quick-actions-section h2 {
    font-size: 32px;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.action-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
    transition: all 0.3s ease;
}

.action-card:hover {
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.15);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.action-icon i {
    font-size: 32px;
    color: white;
}

.action-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.action-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.action-card .btn {
    background: #d4544a;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.action-card .btn:hover {
    background: #c24c43;
}

/* Error Search Section */
.error-search-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.search-wrapper h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.search-wrapper p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.search-form-404 {
    margin-bottom: 40px;
}

.search-input-wrapper {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.06);
}

.search-input-wrapper .search-field {
    flex: 1;
    padding: 18px 20px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-input-wrapper .search-submit {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 18px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input-wrapper .search-submit:hover {
    background: #245191;
}

.popular-searches h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.search-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.search-tag:hover {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

/* Popular Content Section */
.popular-content-section {
    padding: 80px 0;
    background: white;
}

.popular-content-section h2 {
    font-size: 32px;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.content-section h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
}

/* Article List */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-item {
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

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

.article-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.article-item h4 a {
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-item h4 a:hover {
    color: #2c5aa0;
}

.article-date {
    font-size: 12px;
    color: #666;
}

/* Resource List */
.resource-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resource-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.resource-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-icon i {
    color: #2c5aa0;
    font-size: 18px;
}

.resource-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.resource-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-content h4 a:hover {
    color: #2c5aa0;
}

.resource-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f8f9fa;
    transition: color 0.3s ease;
}

.category-item a:hover {
    color: #2c5aa0;
}

.category-count {
    font-size: 12px;
    color: #666;
}

/* Emergency Contact Section */
.emergency-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4544a 0%, #c24c43 100%);
    color: white;
    text-align: center;
}

.emergency-content {
    max-width: 800px;
    margin: 0 auto;
}

.emergency-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.emergency-text p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.emergency-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-emergency {
    background: white;
    color: #d4544a;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.btn-emergency:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.emergency-note {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Site Map Section */
.sitemap-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sitemap-section h2 {
    font-size: 32px;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.sitemap-column h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.sitemap-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-column li {
    margin-bottom: 8px;
}

.sitemap-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sitemap-column a:hover {
    color: #2c5aa0;
}

/* Back to Home Section */
.back-home-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.back-home-content {
    max-width: 600px;
    margin: 0 auto;
}

.back-home-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.back-home-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.back-home-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.back-home-actions .btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.back-home-actions .btn-primary {
    background: #2c5aa0;
    color: white;
    border: 2px solid #2c5aa0;
}

.back-home-actions .btn-primary:hover {
    background: #245191;
    border-color: #245191;
}

.back-home-actions .btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #ccc;
}

.back-home-actions .btn-secondary:hover {
    background: #f8f9fa;
    border-color: #999;
}

/* Report Error Section */
.report-error-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.report-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.report-content p {
    color: #666;
    margin-bottom: 30px;
}

.error-details {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.error-details summary {
    background: #2c5aa0;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.error-details summary:hover {
    background: #245191;
}

.error-form {
    background: white;
    border-radius: 0 0 8px 8px;
    padding: 30px;
    border: 1px solid #e9ecef;
    border-top: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

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

.btn-outline {
    background: white;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #2c5aa0;
    color: white;
}

/* Responsive Design for 404 Page */
@media (max-width: 768px) {
    .error-code h1 {
        font-size: 80px;
    }

    .error-message h2 {
        font-size: 28px;
    }

    .error-message p {
        font-size: 16px;
    }

    .action-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .action-card {
        padding: 20px;
    }

    .search-input-wrapper {
        flex-direction: column;
    }

    .search-tags {
        justify-content: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .emergency-actions {
        flex-direction: column;
        align-items: center;
    }

    .emergency-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .back-home-actions {
        flex-direction: column;
        align-items: center;
    }

    .back-home-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-hero-section {
        padding: 100px 0 60px;
    }

    .error-code h1 {
        font-size: 60px;
    }

    .error-message h2 {
        font-size: 24px;
    }

    .quick-actions-section,
    .error-search-section,
    .popular-content-section,
    .emergency-contact-section,
    .sitemap-section,
    .back-home-section {
        padding: 60px 0;
    }

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

    .action-card {
        padding: 25px 20px;
    }

    .search-wrapper {
        padding: 0 20px;
    }

    .error-form {
        padding: 20px;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Quiz Section */
.quiz-section {
    padding: 90px 0;
    background-color: #f8fafc;
}

.quiz-section h2 {
    text-align: center;
    color: #2c5aa0;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.quiz-section > .container > p {
    text-align: center;
    color: #666;
    font-size: 19px;
    margin-bottom: 50px;
}

.quiz-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.quiz-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 8px;
    background-color: #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2c5aa0 0%, #4a7bc8 100%);
    width: 20%;
    transition: width 0.4s ease;
}

.question-counter {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.quiz-content {
    position: relative;
}

.quiz-question {
    display: none;
    animation: fadeIn 0.4s ease;
}

.quiz-question.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-text {
    margin-bottom: 40px;
}

.question-text h3 {
    color: #2c5aa0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}

.answer-choices {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer-choice {
    padding: 20px 25px;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

/* .answer-choice:hover {
    border-color: #2c5aa0;
    background-color: #f0f4f8;
    transform: translateX(5px);
} */

.answer-choice:active {
    transform: scale(0.98);
}

.quiz-results {
    display: none;
    padding: 40px 40px;
}

.quiz-results.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.results-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.results-content h3 {
    color: #2c5aa0;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.results-content p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.results-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.results-form input {
    padding: 18px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.results-form input:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.results-form button {
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Quiz Styles */
@media (max-width: 768px) {
    .quiz-container {
        padding: 30px 20px;
    }

    .question-text h3 {
        font-size: 20px;
    }

    .answer-choice {
        padding: 16px 20px;
        font-size: 15px;
    }

    .quiz-results {
        padding: 40px 20px;
    }

    .results-content h3 {
        font-size: 28px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #2c5aa0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .main-navigation ul li a {
        font-size: 13px;
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop elements on mobile */
    .site-branding .site-description {
        display: none;
    }

    .header-actions .search-icon,
    .header-actions .free-guide-btn {
        display: none;
    }

    .site-branding .site-title {
        font-size: 24px;
    }

    /* Mobile Navigation */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        z-index: 999;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation .container {
        padding: 80px 0 20px 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation ul li {
        border-bottom: 1px solid #e8e8e8;
    }

    .main-navigation ul li a {
        display: block;
        padding: 18px 30px;
        font-size: 16px;
        color: #333;
        transition: all 0.3s ease;
    }

    .main-navigation ul li a:hover {
        background-color: #f5f5f5;
        color: #2c5aa0;
        padding-left: 40px;
    }

    /* Add mobile-specific CTA to menu */
    .main-navigation::after {
        content: '';
        display: block;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .site-branding .site-title {
        font-size: 20px;
    }

    .header-top {
        padding: 10px 0;
    }

    .container {
        padding: 0 15px;
    }

    .main-navigation {
        width: 100%;
        right: -100%;
    }
}
/* ==========================================================================
   Learning Pages - AI Copyright Law Templates
   ========================================================================== */

/* Common Page Hero Section */
.page-hero-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    color: white;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-section .breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: white;
}

.page-hero-section .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-hero-section .breadcrumb a:hover {
    opacity: 0.7;
}

.page-hero-section .breadcrumb span {
    color: white;
}

.page-hero-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
}

.page-hero-section .hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 800px;
    color: white;
}

/* Common Section Styles */
.overview-section,
.content-section,
.central-question-section,
.key-question-section,
.when-help-section {
    padding: 80px 0;
    background: white;
}

.section-intro {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Overview Boxes */
.overview-box,
.question-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    border-left: 6px solid #2c5aa0;
}

.overview-box h2,
.question-box h2 {
    font-size: 36px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead,
.lead-answer {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.lead-answer strong {
    color: #2c5aa0;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item,
.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Topic Grid Clickable Links */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.topic-item {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.topic-item:hover {
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

.topic-icon {
    font-size: 48px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.topic-item h3 {
    font-size: 22px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* ==========================================================================
   AI Creation Page Styles
   ========================================================================== */

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.principle-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #2c5aa0;
}

.principle-icon {
    font-size: 40px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.principle-card h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.principle-card p {
    line-height: 1.8;
    color: #4a4a4a;
}

.principle-card em {
    color: #666;
    font-style: italic;
}

/* Guidance Section */
.guidance-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.guidance-content {
    max-width: 900px;
    margin: 0 auto;
}

.guidance-highlight {
    display: flex;
    gap: 30px;
    align-items: start;
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.highlight-icon {
    font-size: 50px;
    color: #2c5aa0;
    flex-shrink: 0;
}

.highlight-text h3 {
    font-size: 26px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.key-findings {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.key-findings h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.key-findings ul {
    list-style: none;
    padding: 0;
}

.key-findings li {
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
    position: relative;
}

.key-findings li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

.key-findings strong {
    color: #2c5aa0;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: white;
}

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

.comparison-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 35px;
    border-left: 5px solid #2c5aa0;
}

.country-flag {
    font-size: 36px;
    margin-bottom: 15px;
}

.comparison-item h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Implications Section */
.implications-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

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

.implication-box {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.implication-box.warning {
    border-left: 6px solid #d4544a;
}

.implication-box.success {
    border-left: 6px solid #28a745;
}

.implication-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.implication-box h3 i {
    margin-right: 10px;
}

.implication-box ul {
    list-style: none;
    padding: 0;
}

.implication-box li {
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.8;
    position: relative;
}

.implication-box li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

/* Notice Section */
.notice-section {
    background: #fff8e1;
    padding: 60px 0;
}

.notice-box {
    display: flex;
    gap: 30px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid #ffa726;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.notice-icon {
    font-size: 50px;
    color: #ffa726;
    flex-shrink: 0;
}

.notice-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.notice-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.notice-content strong {
    color: #2c5aa0;
}

/* ==========================================================================
   Legal Framework Page Styles
   ========================================================================== */

.authorities-section {
    padding: 80px 0;
    background: white;
}

.timeline-framework {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
}

.timeline-framework:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #2c5aa0, #e8f1f8);
}

.timeline-item-framework {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.timeline-date {
    position: absolute;
    left: -10px;
    top: 0;
    background: #2c5aa0;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.timeline-content-framework {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline-content-framework h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content-framework p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.source-link {
    margin-top: 15px;
    font-size: 14px;
}

.source-link a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.source-link a:hover {
    text-decoration: underline;
}

.legal-significance,
.key-conclusion {
    margin-top: 20px;
    padding: 20px;
    background: #e8f1f8;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.legal-significance strong,
.key-conclusion strong {
    color: #2c5aa0;
}

/* Foundation Section */
.foundation-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.law-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.law-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.law-icon {
    font-size: 40px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.law-card h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.law-card p {
    line-height: 1.8;
    color: #4a4a4a;
}

.law-card em {
    color: #666;
    font-style: italic;
}

/* Questions Section */
.questions-section {
    padding: 80px 0;
    background: white;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.question-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 5px solid #2c5aa0;
    position: relative;
}

.question-number {
    position: absolute;
    top: -25px;
    left: 35px;
    background: #2c5aa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.question-card h3 {
    font-size: 20px;
    color: #333;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 700;
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.status-badge.developing {
    background: #fff3cd;
    color: #856404;
}

.status-badge.evolving {
    background: #d1ecf1;
    color: #0c5460;
}

/* International Section */
.international-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.international-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.jurisdiction-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.jurisdiction-card h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.jurisdiction-card h3 i {
    margin-right: 10px;
}

/* Resources Framework Section */
.resources-framework-section {
    padding: 80px 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.resource-item h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.resource-item p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

/* ==========================================================================
   Case Studies Page Styles
   ========================================================================== */

.major-cases-section {
    padding: 80px 0;
    background: white;
}

.case-cards {
    margin-top: 40px;
}

.case-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 6px solid #2c5aa0;
}

.case-card.victory {
    border-left-color: #28a745;
}

.case-card.mixed {
    border-left-color: #ffa726;
}

.case-card.ai-victory {
    border-left-color: #6c757d;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.case-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.case-card.victory .case-badge {
    background: #28a745;
}

.case-card.mixed .case-badge {
    background: #ffa726;
}

.case-card.ai-victory .case-badge {
    background: #6c757d;
}

.case-date {
    color: #666;
    font-size: 15px;
    font-weight: 600;
}

.case-card h3 {
    font-size: 28px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.case-parties {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.case-parties strong {
    color: #2c5aa0;
}

.case-details h4 {
    font-size: 20px;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.case-details p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.case-details strong {
    color: #2c5aa0;
}

/* Ongoing Cases Section */
.ongoing-cases-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.ongoing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ongoing-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.ongoing-status {
    margin-bottom: 20px;
}

.status-badge.active {
    background: #d4544a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.ongoing-card h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.case-summary p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.case-summary strong {
    color: #2c5aa0;
}

/* Takeaways Section */
.takeaways-section {
    padding: 80px 0;
    background: white;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.takeaway-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #2c5aa0;
}

.takeaway-icon {
    font-size: 40px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.takeaway-box h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.takeaway-box p {
    line-height: 1.8;
    color: #4a4a4a;
}

/* ==========================================================================
   Fair Use Page Styles
   ========================================================================== */

.central-question-section {
    background: linear-gradient(135deg, #e8f1f8 0%, #f8f9fa 100%);
    padding: 60px 0;
}

.what-is-section {
    padding: 80px 0;
    background: white;
}

.fair-use-explanation {
    max-width: 900px;
    margin: 0 auto;
}

.fair-use-explanation p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.doctrine-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.doctrine-box h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.doctrine-box ul {
    list-style: none;
    padding: 0;
}

.doctrine-box li {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}

.doctrine-box li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

.important-note {
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffa726;
    margin: 25px 0;
}

.important-note strong {
    color: #333;
}

/* Four Factors Section */
.four-factors-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.factor-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    border-top: 6px solid #2c5aa0;
}

.factor-number {
    position: absolute;
    top: -30px;
    left: 40px;
    background: #2c5aa0;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.factor-card h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-top: 15px;
    margin-bottom: 12px;
    font-weight: 700;
}

.factor-question {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
}

.ai-application h4 {
    font-size: 20px;
    color: #333;
    margin-top: 25px;
    margin-bottom: 20px;
    font-weight: 700;
}

.pro-fair-use,
.against-fair-use,
.neutral {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pro-fair-use {
    border-left: 4px solid #28a745;
}

.against-fair-use {
    border-left: 4px solid #d4544a;
}

.neutral {
    border-left: 4px solid #6c757d;
}

.pro-fair-use h5,
.against-fair-use h5,
.neutral h5 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.pro-fair-use h5 {
    color: #28a745;
}

.against-fair-use h5 {
    color: #d4544a;
}

.neutral h5 {
    color: #6c757d;
}

.pro-fair-use ul,
.against-fair-use ul,
.neutral ul {
    list-style: none;
    padding: 0;
}

.pro-fair-use li,
.against-fair-use li,
.neutral li {
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.7;
    position: relative;
}

.pro-fair-use li:before,
.against-fair-use li:before,
.neutral li:before {
    content: "•";
    position: absolute;
    left: 5px;
    font-weight: 700;
    font-size: 18px;
}

.pro-fair-use li:before {
    color: #28a745;
}

.against-fair-use li:before {
    color: #d4544a;
}

.neutral li:before {
    color: #6c757d;
}

.critical-factor {
    background: #e8f1f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2c5aa0;
}

.critical-factor p {
    margin: 0;
    font-weight: 600;
}

.critical-factor strong {
    color: #2c5aa0;
}

/* Copyright Office Section */
.copyright-office-section {
    padding: 80px 0;
    background: white;
}

.guidance-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.guidance-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.guidance-header i {
    font-size: 50px;
    color: #2c5aa0;
}

.guidance-header h3 {
    font-size: 28px;
    color: #2c5aa0;
    margin: 0;
    font-weight: 700;
}

.conclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.conclusion-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.conclusion-item h4 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 700;
}

.conclusion-item p {
    line-height: 1.7;
    margin: 0;
    color: #4a4a4a;
}

.office-position {
    background: #e8f1f8;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 6px solid #2c5aa0;
}

.office-position h4 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.office-position p {
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

/* Court Decisions Comparison */
.court-decisions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.rulings-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.ruling-column {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ruling-column.fair-use-found {
    border-top: 6px solid #28a745;
}

.ruling-column.fair-use-rejected {
    border-top: 6px solid #d4544a;
}

.ruling-column h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.ruling-column.fair-use-found h3 {
    color: #28a745;
}

.ruling-column.fair-use-rejected h3 {
    color: #d4544a;
}

.ruling-column h3 i {
    margin-right: 10px;
}

.case-ruling {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.case-ruling h4 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 700;
}

.case-ruling p {
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.reasoning {
    background: #e8f1f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.reasoning strong {
    color: #2c5aa0;
}

.key-insight {
    display: flex;
    gap: 20px;
    align-items: start;
    background: #fff8e1;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 6px solid #ffa726;
}

.key-insight i {
    font-size: 40px;
    color: #ffa726;
    flex-shrink: 0;
}

.key-insight p {
    margin: 0;
    line-height: 1.8;
}

.key-insight strong {
    color: #333;
}

/* Practical Section */
.practical-section {
    padding: 80px 0;
    background: white;
}

.implications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.implication-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 5px solid #2c5aa0;
}

.implication-card h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 25px;
    font-weight: 700;
}

.implication-card h3 i {
    margin-right: 10px;
}

.implication-card ul {
    list-style: none;
    padding: 0;
}

.implication-card li {
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
    position: relative;
}

.implication-card li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

.implication-card strong {
    color: #2c5aa0;
}

/* ==========================================================================
   Licensing Page Styles
   ========================================================================== */

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.what-is-licensing-section {
    padding: 80px 0;
    background: white;
}

.licensing-explanation {
    max-width: 900px;
    margin: 0 auto;
}

.licensing-explanation > p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.licensing-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.element-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.element-icon {
    font-size: 40px;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.element-card h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 12px;
    font-weight: 700;
}

.element-card p {
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

/* Market Landscape Section */
.market-landscape-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.landscape-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trend-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 6px solid #2c5aa0;
}

.trend-box h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.trend-box h3 i {
    margin-right: 10px;
}

.trend-box p {
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

.major-players {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.major-players > h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

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

.player-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 8px;
}

.player-card.licensors {
    border-top: 4px solid #28a745;
}

.player-card.licensees {
    border-top: 4px solid #2c5aa0;
}

.player-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.player-card.licensors h4 {
    color: #28a745;
}

.player-card.licensees h4 {
    color: #2c5aa0;
}

.player-card ul {
    list-style: none;
    padding: 0;
}

.player-card li {
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
}

.player-card li:before {
    content: "•";
    position: absolute;
    left: 10px;
    font-weight: 700;
    font-size: 20px;
}

.player-card.licensors li:before {
    color: #28a745;
}

.player-card.licensees li:before {
    color: #2c5aa0;
}

.player-card strong {
    color: #333;
}

/* Notable Agreements Section */
.notable-agreements-section {
    padding: 80px 0;
    background: white;
}

.agreements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.agreement-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 6px solid #2c5aa0;
}

.agreement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.agreement-header h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin: 0;
    font-weight: 700;
}

.agreement-value {
    background: #e8f1f8;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #2c5aa0;
}

.agreement-card > p {
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

/* Rights Holders Section */
.rights-holders-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.considerations-content {
    max-width: 1000px;
    margin: 0 auto;
}

.consideration-box {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.consideration-box.important {
    border-left: 6px solid #d4544a;
}

.consideration-box h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.consideration-box h3 i {
    margin-right: 10px;
    color: #2c5aa0;
}

.consideration-box p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.consideration-box strong {
    color: #2c5aa0;
}

.action-item {
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #ffa726;
}

.action-item strong {
    color: #333;
}

.key-questions {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 5px solid #2c5aa0;
}

.key-questions h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 25px;
    font-weight: 700;
}

.key-questions ul {
    list-style: none;
    padding: 0;
}

.key-questions li {
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
    position: relative;
}

.key-questions li:before {
    content: "?";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 24px;
}

.key-questions strong {
    color: #333;
}

.fair-split-discussion {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.fair-split-discussion h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.fair-split-discussion p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.fair-split-discussion ul {
    list-style: none;
    padding: 0;
}

.fair-split-discussion li {
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
}

.fair-split-discussion li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

.fair-split-discussion strong {
    color: #2c5aa0;
}

/* Creative Commons Section */
.creative-commons-section {
    padding: 80px 0;
    background: white;
}

.cc-content {
    max-width: 900px;
    margin: 0 auto;
}

.cc-intro {
    font-size: 19px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

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

.cc-license-box,
.cc-considerations {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cc-license-box h4,
.cc-considerations h4 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.cc-license-box ul,
.cc-considerations ul {
    list-style: none;
    padding: 0;
}

.cc-license-box li,
.cc-considerations li {
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.7;
    position: relative;
}

.cc-license-box li:before,
.cc-considerations li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

.cc-license-box strong,
.cc-considerations strong {
    color: #333;
}

/* International Licensing Section */
.international-licensing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.jurisdiction-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.jurisdiction-box h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.jurisdiction-box h3 i {
    margin-right: 10px;
}

.jurisdiction-box p {
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

/* Future Licensing Section */
.future-licensing-section {
    padding: 80px 0;
    background: white;
}

.future-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trend-analysis,
.market-prediction {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.trend-analysis h3,
.market-prediction h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.trend-analysis h3 i,
.market-prediction h3 i {
    margin-right: 10px;
}

.trend-analysis ul {
    list-style: none;
    padding: 0;
}

.trend-analysis li {
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
    position: relative;
}

.trend-analysis li:before {
    content: "→";
    position: absolute;
    left: 5px;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

.trend-analysis strong {
    color: #333;
}

.market-prediction p {
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

/* ==========================================================================
   Legal Help Page Styles
   ========================================================================== */

.when-help-section {
    padding: 80px 0;
    background: white;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.scenario-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #2c5aa0;
    text-align: center;
}

.scenario-icon {
    font-size: 50px;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.scenario-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.scenario-card p {
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

/* Official Resources Section */
.official-resources-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.resource-card.official {
    border-left: 6px solid #2c5aa0;
}

.resource-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.resource-header i {
    font-size: 40px;
    color: #2c5aa0;
    flex-shrink: 0;
}

.resource-header h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin: 0;
    font-weight: 700;
}

.resource-content p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.resource-content strong {
    color: #333;
}

/* Finding Attorney Section */
.finding-attorney-section {
    padding: 80px 0;
    background: white;
}

.attorney-guidance {
    max-width: 1000px;
    margin: 0 auto;
}

.why-specialist {
    background: linear-gradient(135deg, #e8f1f8 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 6px solid #2c5aa0;
}

.why-specialist h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.why-specialist h3 i {
    margin-right: 10px;
}

.why-specialist > p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.why-specialist ul {
    list-style: none;
    padding: 0;
}

.why-specialist li {
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
}

.why-specialist li:before {
    content: "✓";
    position: absolute;
    left: 5px;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

.what-to-look-for {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.what-to-look-for > h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.criteria-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 8px;
    border-top: 3px solid #2c5aa0;
}

.criteria-item h4 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 12px;
    font-weight: 700;
}

.criteria-item h4 i {
    margin-right: 8px;
}

.criteria-item p {
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    font-size: 16px;
}

/* Legal Services Section */
.legal-services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #2c5aa0;
}

.service-card h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card h3 i {
    margin-right: 10px;
}

.service-card p {
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.service-card strong {
    color: #333;
}

/* Questions Section */
.questions-section.legal-help-page .questions-section {
    padding: 80px 0;
    background: white;
}

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

.questions-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.questions-column h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.questions-column ul {
    list-style: none;
    padding: 0;
}

.questions-column li {
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.7;
    position: relative;
}

.questions-column li:before {
    content: "?";
    position: absolute;
    left: 5px;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 20px;
}

/* Professional Organizations Section */
.organizations-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 0;
}

.orgs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.org-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 5px solid #2c5aa0;
}

.org-card h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.org-card p {
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.org-focus {
    background: #e8f1f8;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.org-focus strong {
    color: #2c5aa0;
}

/* Self Help Section */
.self-help-section {
    padding: 80px 0;
    background: white;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #2c5aa0;
}

.tool-card h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.tool-card h3 i {
    margin-right: 10px;
}

.tool-content p {
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.tool-content strong {
    color: #333;
}

.tool-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.tool-content li {
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.7;
    position: relative;
}

.tool-content li:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 18px;
}

.tool-content a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.tool-content a:hover {
    text-decoration: underline;
}

.tool-action {
    background: #e8f1f8;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid #2c5aa0;
    font-weight: 500;
}

/* Get Started Section */
.get-started-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #245191 100%);
    padding: 80px 0;
    color: white;
}

.get-started-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    line-height: 1.7;
    opacity: 0.95;
}

/* Page CTA Section */
.page-cta-section {
    background: linear-gradient(135deg, #d4544a 0%, #c94a4a 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.page-cta-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
}

/* ==========================================================================
   Responsive Design for Learning Pages
   ========================================================================== */

@media (max-width: 1024px) {
    .factors-grid,
    .ongoing-grid,
    .implications-content,
    .implications-grid {
        grid-template-columns: 1fr;
    }

    .rulings-comparison {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .page-hero-section h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .overview-box h2,
    .question-box h2 {
        font-size: 28px;
    }

    .lead,
    .lead-answer {
        font-size: 19px;
    }

    .principles-grid,
    .comparison-grid,
    .law-grid,
    .questions-grid,
    .takeaways-grid,
    .licensing-elements,
    .agreements-grid,
    .scenarios-grid,
    .resources-grid,
    .services-grid,
    .tools-grid,
    .orgs-grid {
        grid-template-columns: 1fr;
    }

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

    .overview-box,
    .question-box {
        padding: 30px;
    }

    .guidance-highlight {
        flex-direction: column;
    }

    .notice-box {
        flex-direction: column;
    }

    .case-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .cc-guidance {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        padding: 40px 0 30px;
    }

    .page-hero-section h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-intro {
        font-size: 18px;
    }

    .overview-box h2,
    .question-box h2 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .case-card h3 {
        font-size: 22px;
    }

    .factor-card,
    .case-card {
        padding: 25px;
    }

    .page-cta-section h2 {
        font-size: 28px;
    }

    .page-cta-section p {
        font-size: 18px;
    }
}

/* ============================================
   DEFAULT PAGE TEMPLATE STYLES (page.php)
   ============================================ */

/* Page Hero Section */
.page-hero-modern {
    padding: 60px 0 40px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-title-modern {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    margin: 0 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.page-meta-modern {
    padding: 20px 0;
}

.page-meta-modern .updated-date {
    font-size: 14px;
    color: #6a6a6a;
    font-weight: 500;
}

/* Page Content Section */
.page-content-modern {
    padding: 60px 0 80px;
    background: #fff;
}

.single-page-modern {
    background: #fff;
}

/* Responsive Adjustments for Pages */
@media (max-width: 768px) {
    .page-hero-modern {
        padding: 40px 0 30px;
    }

    .page-title-modern {
        font-size: 28px;
    }

    .page-content-modern {
        padding: 40px 0 60px;
    }
}

/* ============================================
   PROSE/CONTENT TYPOGRAPHY STYLES
   ============================================ */

.prose-modern {
    font-size: 19px;
    line-height: 1.7;
    color: #1a1a1a;
    font-family: Georgia, 'Times New Roman', serif;
}

.prose-modern h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 24px 0;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.prose-modern h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 36px 0 16px 0;
    color: #0a0a0a;
}

.prose-modern h4 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 12px 0;
    color: #0a0a0a;
}

.prose-modern p {
    margin-bottom: 28px;
}

.prose-modern blockquote {
    border-left: 4px solid #2c5aa0;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #4a4a4a;
    font-size: 21px;
    background: linear-gradient(90deg, rgba(44, 90, 160, 0.05) 0%, transparent 100%);
    padding: 24px;
    border-radius: 0 8px 8px 0;
}

.prose-modern ul, .prose-modern ol {
    margin: 28px 0;
    padding-left: 32px;
}

.prose-modern li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.prose-modern a {
    color: #2c5aa0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.prose-modern a:hover {
    text-decoration-thickness: 2px;
}

.prose-modern img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

.prose-modern code {
    background: rgba(44, 90, 160, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #2c5aa0;
}

.prose-modern pre {
    background: #1a1a1a;
    color: #f0f0f0;
    padding: 24px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 32px 0;
}

.prose-modern pre code {
    background: none;
    padding: 0;
    color: #f0f0f0;
}

.prose-modern strong {
    font-weight: 700;
    color: #0a0a0a;
}

.prose-modern em {
    font-style: italic;
}

.prose-modern hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 48px 0;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .prose-modern {
        font-size: 17px;
    }

    .prose-modern h2 {
        font-size: 26px;
        margin: 36px 0 18px 0;
    }

    .prose-modern h3 {
        font-size: 22px;
        margin: 28px 0 14px 0;
    }

    .prose-modern h4 {
        font-size: 19px;
    }

    .prose-modern blockquote {
        font-size: 18px;
        padding: 18px;
    }
}

/* ============================================
   CONTACT MODAL STYLES
   ============================================ */

.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.contact-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.contact-modal.active .contact-modal-content {
    transform: scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.contact-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.contact-modal-close svg {
    color: #4a4a4a;
}

.contact-modal-header {
    padding: 40px 40px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 12px 0;
}

.contact-modal-header p {
    font-size: 16px;
    color: #6a6a6a;
    margin: 0;
}

.contact-modal-body {
    padding: 40px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .contact-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }

    .contact-modal-header {
        padding: 30px 20px 15px;
    }

    .contact-modal-header h2 {
        font-size: 24px;
    }

    .contact-modal-body {
        padding: 20px;
    }

    .contact-modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
}

