/* Additional styles for Felipe's Driving School */

/* FAQ Item Styling */
.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #c10009;
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Item Styling */
.service-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.service-item h3 {
    color: #c10009;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #c10009;
    margin-bottom: 10px;
}

.service-description {
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.service-description li {
    margin-bottom: 5px;
}

/* Resource Item Styling */
.resource-section {
    margin-bottom: 40px;
}

.resource-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.resource-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.resource-item h4 {
    color: #c10009;
    margin-bottom: 10px;
}

.resource-item a {
    color: #333;
    text-decoration: none;
}

.resource-item a:hover {
    color: #c10009;
}

.resource-item .fa {
    margin-right: 10px;
    color: #c10009;
}

/* Portal Section Styling */
.portal-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.portal-section h3 {
    color: #c10009;
    margin-bottom: 20px;
}

.portal-btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    background: #c10009;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.portal-btn:hover {
    background: #a00007;
    color: white;
    text-decoration: none;
}

/* CTA Section Styling */
.cta-section {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: #c10009;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-item,
    .resource-item,
    .faq-item {
        padding: 15px;
    }
    
    .portal-btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
    
    .price {
        font-size: 20px;
    }
} 