/* Information Page Specific Styles */

.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/info-banner.jpg');
    background-size: cover;
    background-position: center;
}

.info-intro {
    padding: 40px 0;
}

.info-intro h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.info-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
}

.info-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.info-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guides-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin: 40px 0;
}

.guides-section h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.guide-image {
    height: 180px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-content {
    padding: 20px;
}

.guide-content h3 {
    color: #2a7a9e;
    margin-bottom: 10px;
}

.guide-content p {
    color: #555;
    margin-bottom: 15px;
}

.guide-link {
    display: inline-block;
    color: #2a7a9e;
    font-weight: bold;
    text-decoration: none;
}

.guide-link:hover {
    text-decoration: underline;
}

.tips-section {
    padding: 60px 0;
}

.tips-section h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.tips-content {
    max-width: 900px;
    margin: 0 auto;
}

.tip-item {
    margin-bottom: 40px;
}

.tip-item h3 {
    color: #2a7a9e;
    margin-bottom: 15px;
}

.tip-item p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.tip-item ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tip-item ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.faq-section {
    background-color: #eaf4f9;
    padding: 60px 0;
    margin: 40px 0;
}

.faq-section h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.faq-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid #2a7a9e;
    color: #2a7a9e;
    border-radius: 30px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category.active, .faq-category:hover {
    background-color: #2a7a9e;
    color: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

.faq-question {
    background-color: #f9f9f9;
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

.resources-section {
    padding: 60px 0;
}

.resources-section h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 36px;
    color: #2a7a9e;
    margin-bottom: 15px;
}

.resource-card h3 {
    color: #2a7a9e;
    margin-bottom: 10px;
}

.resource-card p {
    color: #555;
    margin-bottom: 15px;
}

.resource-link {
    display: inline-block;
    color: #2a7a9e;
    font-weight: bold;
    text-decoration: none;
}

.resource-link:hover {
    text-decoration: underline;
}

.newsletter-section {
    background-color: #2a7a9e;
    color: white;
    padding: 60px 0;
    margin: 40px 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.newsletter-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.newsletter-form button {
    background-color: #1c5c7a;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #154559;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .info-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 5px;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
}