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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60px;
    gap: 15px;
}

.nav-logo .logo-text {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #DC2626;
    text-decoration: none;
    white-space: nowrap;
}

.nav-logo a {
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #DC2626;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #DC2626;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #DC2626;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Main Content */
.main {
    margin-top: 60px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    color: #fd0000;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-width: 150px;
}

.btn-primary {
    background-color: #DC2626;
    color: white;
    border-color: #DC2626;
}

.btn-primary:hover {
    background-color: #B91C1C;
    border-color: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

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

.btn-secondary:hover {
    background-color: white;
    color: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Sports Categories Section */
.sports-categories {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #DC2626;
    border-radius: 2px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sport-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #DC2626;
}

.sport-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.sport-title {
    color: #DC2626;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sport-description {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.sport-link {
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sport-link:hover {
    color: #B91C1C;
    text-decoration: underline;
}

/* Disclaimer Section */
.disclaimer {
    padding: 4rem 0;
    background: #DC2626;
    color: white;
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.disclaimer-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.disclaimer-details {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #DC2626;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

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

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

.footer-title {
    color: #DC2626;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #DC2626;
}

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

.footer-contact a {
    color: #DC2626;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-disclaimer {
    color: #DC2626;
    font-weight: 600;
}

.footer-copyright {
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 15px;
        min-height: 50px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 50px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -7px);

    }

    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .main {
        margin-top: 50px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }

    .sports-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 10px;
    }
    
    .nav-logo .logo-text {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }

    .sport-card {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
    
    .btn {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 0;
    outline-offset: 0px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background-color: #000;
        border-color: #000;
    }
    
    .btn-secondary {
        border-color: #000;
        color: #000;
    }
    
    .sport-card {
        border: 2px solid #000;
    }
}

/* Page-specific styles */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
        background: radial-gradient(black, transparent);
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    color: #ff0000;
}

.page-hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    color: #fff;
}

.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-title {
    color: #DC2626;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #DC2626;
    border-radius: 2px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-content h3 {
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.scoring-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.scoring-example {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #DC2626;
}

.scoring-example h3 {
    color: #DC2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.scoring-example ul {
    list-style: none;
    padding: 0;
}

.scoring-example li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
}

.scoring-example li:last-child {
    border-bottom: none;
}

.info-box {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.info-box h3 {
    color: #0369a1;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-box p {
    margin: 0;
    color: #0c4a6e;
}

.external-link {
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.external-link:hover {
    border-bottom-color: #DC2626;
}

.cta-section {
    padding: 4rem 0;
    background: #DC2626;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.nav-link.active {
    color: #DC2626;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Additional page-specific styles */
.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    background: #DC2626;
    color: white;
    padding: 1rem;
    text-align: center;
}

.comparison-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.comparison-content {
    padding: 1.5rem;
}

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

.comparison-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    padding-left: 1.5rem;
}

.comparison-content li:last-child {
    border-bottom: none;
}

.comparison-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: bold;
}

.authority-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.authority-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.authority-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.authority-content h3 {
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.authority-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

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

.requirement-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #DC2626;
}

.requirement-item h3 {
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.requirement-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.league-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.league-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #DC2626;
}

.league-info h3 {
    color: #DC2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.league-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
}

.league-info li:last-child {
    border-bottom: none;
}

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

.guideline-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-2px);
}

.guideline-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.guideline-card h3 {
    color: #DC2626;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guideline-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.organization-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.org-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.org-resources h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.org-resources li {
    padding: 0.25rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.org-resources li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: bold;
}

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

.tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #DC2626;
}

.tip-item h3 {
    color: #DC2626;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

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

.warning-item {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 1.5rem;
    border-radius: 8px;
}

.warning-item h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.warning-item p {
    margin: 0;
    color: #7f1d1d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Legal content styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h2 {
    color: #DC2626;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #DC2626;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

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

.legal-content a {
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #DC2626;
}

.contact-method h3 {
    color: #DC2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method p {
    margin-bottom: 1rem;
    color: #666;
}

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

.contact-method li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.contact-method li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: bold;
}

.contact-link {
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-cta,
    .cta-section {
        display: none;
    }
    
    .main {
        margin-top: 0;
    }
    
    .hero,
    .page-hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-background,
    .page-hero-background {
        display: none;
    }
    
    .hero-content,
    .page-hero-content {
        color: #000;
        text-shadow: none;
    }
}
