/* Hero Section */
.hero-guides {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000000 0%, #1F2937 100%);
    color: white;
    text-align: center;
}

.hero-guides .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-guides .title-accent {
    color: #DC2626;
    font-weight: 300;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-guides .title-main {
    font-size: 3.5rem;
    text-transform: uppercase;
    color: white;
}

.hero-guides .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Guides Section */
.guides-section {
    padding: 100px 0;
    background: #f9fafb;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.guide-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

.guide-icon {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.guide-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.guide-description {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

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

.guide-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.guide-features i {
    color: #DC2626;
    font-size: 0.85rem;
}

.btn-guide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 25px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.btn-guide:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1F2937 100%);
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-title i {
    color: #DC2626;
}

.newsletter-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
}

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

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: #DC2626;
    background: rgba(255, 255, 255, 0.15);
}

.btn-newsletter {
    padding: 18px 35px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.resource-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.resource-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.resource-card p {
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-link {
    color: #DC2626;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-guides .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-guides .title-main {
        font-size: 2.5rem;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-title {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

