/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --light-color: #f3f4f6;
    --dark-color: #1f2937;
    --text-color: #374151;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active {
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--light-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social a {
    color: white;
    margin-left: 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social a:hover {
    color: var(--accent-color);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-text h2 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.service i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.team-section {
    margin-top: 60px;
}

.team-section h2 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-photo.placeholder {
    background-color: #ccc;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.team-member p {
    margin-bottom: 5px;
    color: var(--text-color);
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a i {
    font-size: 18px;
    margin-right: 5px;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Policy Discussions Page Styles */
.policy-content {
    padding: 80px 0;
}

.policy-intro {
    margin-bottom: 60px;
}

.policy-intro h2 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.policy-intro p {
    margin-bottom: 20px;
    font-size: 16px;
}

.meeting-signup {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.meeting-signup h2 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.meeting-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.meeting-slot {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.meeting-slot:hover {
    border-color: var(--primary-color);
}

.meeting-slot.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.meeting-slot.full {
    opacity: 0.5;
    cursor: not-allowed;
}

.meeting-slot .slot-time {
    font-weight: 600;
    margin-bottom: 5px;
}

.meeting-slot .slot-date {
    font-size: 14px;
}

.meeting-slot .slot-availability {
    font-size: 14px;
    margin-top: 5px;
}

#registration-confirmation {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: center;
}

#registration-confirmation h2 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

#registration-details {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
    text-align: left;
}

.hidden {
    display: none;
}

.discussion-topics h2 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.topic {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.topic:hover {
    transform: translateY(-10px);
}

.topic i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.topic h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .social {
        margin-top: 20px;
    }
    
    .social a:first-child {
        margin-left: 0;
    }
    
    .meeting-slots {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
}
