/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,600;1,300;1,600&display=swap');

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

/* Body styles removed - using main.css styles for consistency */

/* Navigation styles moved to main.css for consistency */

/* Hero Section */
.hero-section {
    margin-top: 0; /* Removed margin-top, using body margin-top from main.css */
    padding: 80px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.hero-content h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content .tagline {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
}

/* Main Content */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.content-section hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 35px 0;
}

/* Table Styles */
.beliefs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.beliefs-table th {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
}

.beliefs-table td {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

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

.beliefs-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: #2980B9;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.feature-list strong {
    color: #000;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Call to Action */
.cta-section {
    background-color: #000;
    color: #ffffff;
    text-align: center;
    padding: 50px 30px;
    margin-top: 40px;
}

.cta-section h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 300;
}

.cta-tagline {
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
}

/* Footer */
.site-footer {
    background-color: #f8f9fa;
    padding: 25px 30px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Noto Sans', sans-serif;
    color: #333;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

.footer-text {
    color: #666;
    font-size: 0.8rem;
}

/* Mobile Menu Button styles moved to main.css for consistency */

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card h4 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.feature-link {
    display: inline-block;
    color: #2980B9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #1a5a8a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
        /* Keep horizontal layout on mobile */
        flex-direction: row;
        justify-content: space-between;
    }

    /* Mobile menu styles moved to main.css for consistency */

    .hero-section {
        padding: 60px 20px;
        margin-top: 70px; /* Adjust to match fixed header height */
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .main-content {
        padding: 30px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .beliefs-table th,
    .beliefs-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
    }

    .beliefs-table {
        font-size: 0.8rem;
    }

    .beliefs-table th,
    .beliefs-table td {
        padding: 10px 8px;
    }
}
