/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: normal;
    line-height: 1.6;
    background-color: #ffffff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 15px;
}

h1 {
    font-size: 32px;
    color: #000000;
}

h2 {
    font-size: 25px;
    color: #151515;
}

h3 {
    font-size: 22px;
    color: #000000;
}

h4 {
    font-size: 19px;
    color: #000000;
}

h5 {
    font-size: 16px;
    color: #000000;
}

a {
    color: #6ab43e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #281705;
}

p {
    margin-bottom: 15px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-bar {
    background-color: #6ab43e;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #ffffff;
}

.social-links a {
    margin-left: 15px;
    font-size: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #cccccc;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 30px;
    color: #000000;
    margin-bottom: 5px;
}

.nav-brand p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu ul li a {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #6ab43e;
}

.btn-primary {
    background-color: #6ab43e;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a2209;
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

.slide-content h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 25px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-navigation button {
    background-color: rgba(106, 180, 62, 0.8);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.slider-navigation button:hover {
    background-color: rgba(106, 180, 62, 1);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-section h2 {
    font-size: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6ab43e;
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #000000;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-image: url('../images/wild-flowers-3528618.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(106, 180, 62, 0.8);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 28px;
    color: #ffffff;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.service-content h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.service-content p {
    color: #ffffff;
    line-height: 1.6;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.events-section h2 {
    font-size: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.events-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6ab43e;
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.events-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.event-icon {
    margin-right: 20px;
}

.event-icon img {
    width: 40px;
    height: 40px;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    margin-right: 20px;
    border: 2px solid #6ab43e;
    padding: 10px;
    border-radius: 5px;
    color: #6ab43e;
    font-weight: bold;
}

.event-date .day {
    font-size: 24px;
    line-height: 1;
}

.event-date .month,
.event-date .year {
    font-size: 12px;
    text-transform: uppercase;
}

.event-details h4 {
    margin-bottom: 10px;
    color: #000000;
}

.event-details p {
    color: #666666;
    margin: 0;
    font-size: 14px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-image: url('../images/7d1eb49a-8dfe-4aec-add9-1a6f4252c61d.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(106, 180, 62, 0.8);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.video-title-small {
    font-size: 18px;
    margin-bottom: 10px;
}

.video-title-large {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-section h2 {
    font-size: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6ab43e;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-card:nth-child(even) {
    direction: rtl;
}

.blog-card:nth-child(even) .blog-content {
    direction: ltr;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-meta a {
    color: #6ab43e;
}

.blog-content h4 {
    margin-bottom: 15px;
}

.blog-content h4 a {
    color: #000000;
    transition: color 0.3s ease;
}

.blog-content h4 a:hover {
    color: #6ab43e;
}

.read-more {
    color: #6ab43e;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.team-section h2 {
    font-size: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6ab43e;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.member-image {
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-avatar {
    width: 100px;
    height: 100px;
    background-color: #6ab43e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
}

.member-info {
    padding: 20px;
}

.member-info h4 {
    color: #000000;
    margin-bottom: 5px;
}

.member-info cite {
    color: #666666;
    font-style: normal;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background-color: #6ab43e;
    color: #ffffff;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h3 {
    color: #ffffff;
    margin: 0;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #6ab43e;
}

/* Footer */
.footer {
    background-color: #281705;
    color: #979797;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h5 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #979797;
    font-size: 14px;
}

.footer-mission p {
    color: #979797;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-contact p {
    color: #979797;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact a {
    color: #979797;
}

.footer-contact a:hover {
    color: #6ab43e;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #979797;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6ab43e;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #333;
    color: #ffffff;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background-color: #6ab43e;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #3a2209;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding: 20px 0;
    background-color: #2e1b06;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #979797;
    margin: 0;
}

.footer-bottom a {
    color: #979797;
}

.footer-bottom a:hover {
    color: #6ab43e;
}

/* Contact Page Styles */
.page-header {
    padding: 100px 0 60px;
    background-image: url('../images/wild-flowers-3528618.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(106, 180, 62, 0.8);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.breadcrumb {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.contact-page-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
}

.contact-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6ab43e;
}

.contact-intro p {
    font-size: 18px;
    color: #666666;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 30px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6ab43e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-info-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #6ab43e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    color: #000000;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-content p {
    color: #333333;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-content span {
    color: #666666;
    font-size: 14px;
}

.info-content a {
    color: #6ab43e;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.contact-specialties {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-specialties h4 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-specialties ul {
    list-style: none;
    padding: 0;
}

.contact-specialties li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #333333;
    font-size: 15px;
}

.contact-specialties li i {
    color: #6ab43e;
    width: 16px;
}

.social-contact {
    text-align: center;
}

.social-contact h4 {
    color: #000000;
    margin-bottom: 15px;
}

.social-contact p {
    color: #666666;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #6ab43e;
    color: #ffffff;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #3a2209;
    color: #ffffff;
}

.contact-methods-section {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.contact-methods-section h2 {
    font-size: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.contact-methods-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6ab43e;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.method-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.method-icon {
    width: 80px;
    height: 80px;
    background-color: #6ab43e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    margin: 0 auto 25px;
}

.method-card h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 20px;
}

.method-card p {
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.method-btn {
    background-color: #6ab43e;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.method-btn:hover {
    background-color: #3a2209;
    color: #ffffff;
}

.contact-faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-faq-section h2 {
    font-size: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.contact-faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6ab43e;
}

.contact-faq-section .section-header p {
    text-align: center;
    color: #666666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #6ab43e;
}

.faq-item h4 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.nav-brand a {
    color: inherit;
    text-decoration: none;
}

.nav-menu .active {
    color: #6ab43e;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .events-content {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-card:nth-child(even) {
        direction: ltr;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Contact Page Mobile Styles */
    .page-header h1 {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .about-section,
    .services-section,
    .events-section,
    .blog-section,
    .team-section {
        padding: 50px 0;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .event-date {
        margin-right: 0;
    }
}