* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --text-color: #333;
    --border-color: #bdc3c7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 40px;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 1;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-link {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-link:hover {
    background-color: #2980b9;
}

/* Summary Section */
.summary {
    padding: 60px 0;
}

.summary-box {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.summary-box h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: white;
}

.summary-content {
    font-size: 1rem;
    line-height: 1.8;
}

.summary-content p {
    margin-bottom: 15px;
}

.summary-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.summary-content li {
    margin-bottom: 12px;
    list-style-type: disc;
}

/* Image Section */
.image-section {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main Content */
.content {
    padding: 60px 0;
    background-color: #fafafa;
}

.main-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.main-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 20px 0;
    color: var(--primary-color);
}

.main-content p {
    margin-bottom: 20px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq .container {
    max-width: 1200px;
}

.faq-list {
    max-width: 100%;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.faq-question {
    background-color: var(--light-bg);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #d5dbdb;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    background-color: white;
    display: none;
    border-top: 1px solid var(--border-color);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 10px;
    margin-left: 20px;
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 15px;
}

.faq-answer.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn:hover {
    background-color: #2980b9;
}

.message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Facebook Widget Section */
.facebook-widget {
    padding: 60px 20px;
    background-color: #fafafa;
    text-align: center;
}

.facebook-widget h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.facebook-widget-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.fb-page {
    width: 100%;
    max-width: 500px;
}

/* Contact Info Section */
.contact-info {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid var(--border-color);
}

.contact-info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-value:hover {
    color: #3498db;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 0;
}

.admin-link {
    color: var(--secondary-color);
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 25px;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .image-section {
        height: 300px;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 20px;
        max-width: 95%;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .image-section {
        height: 250px;
    }

    .content {
        padding: 30px 0;
    }

    .main-content h2 {
        font-size: 1.4rem;
    }

    .faq h2,
    .contact h2 {
        font-size: 1.4rem;
    }
}
