/* All Sites Included Page Styles */

/* Hero Section */
.all-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-radius: 16px;
    margin-bottom: 4rem;
}

.all-hero h1 {
    font-family: sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #1961a0;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.all-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

.header44 {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-radius: 16px;
    margin-bottom: 4rem;
}

.header44 h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
    font-family: sans-serif;
    font-weight: 700;
}

.header44 p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight-number {
    color: #44d463;
    font-weight: bold;
    font-size: 1.3em;
}

.feature-link {
    color: #1961a0;
    text-decoration: underline;
    font-weight: 400;
    margin-left: 10px;
}

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

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

.section44 h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.site-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.site-name {
    font-weight: 600;
    color: #555;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-card img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

.cta44-section {
    background: #f8f9fa;
    text-align: center;
    padding: 60px 20px;
    margin: 40px 0;
}

.cta44-button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.cta44-button:hover {
    background: #218838;
}

.testimonial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header44 h1 {
        font-size: 2rem;
    }
    
    .header44 p {
        font-size: 1rem;
    }
    
    .section44 {
        padding: 20px 15px;
    }
    
    .sites-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .site-card {
        padding: 15px;
    }
    
    .site-card img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .header44 {
        padding: 20px 15px;
    }
    
    .header44 h1 {
        font-size: 1.8rem;
    }
    
    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta44-section {
        padding: 40px 15px;
    }
}