/* Global Styles */
:root {
    --primary-color: #08843C;
    --secondary-color: #066830;
    --accent-color: #59A71E;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --white: #ffffff;
    --black: #000000;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --dark-green: #045a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

h1 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  font-weight: 900;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

.header-right {
    display: flex;
    align-items: center;
}

/* Navigation Styles */
.main-nav {
    background-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-nav .container {
    position: relative;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.menu a:hover, .menu a.active {
    background-color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
}

/* Content Wrapper */
.content-wrapper {
    min-height: calc(100vh - 200px);
    padding: 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.button, .cta-button a {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover, .cta-button a:hover {
    background-color: #4a8c19;
    color: var(--white);
}

.pulsating-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(89, 167, 30, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(89, 167, 30, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(89, 167, 30, 0);
    }
}

/* Section Styles */
.section {
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-green);
    border-bottom: 2px solid var(--medium-gray);
    padding-bottom: 10px;
}

.section-content {
    margin-bottom: 20px;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-box {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.info-box-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    display: block;
}

/* Parallax Section */
.parallax {
    position: relative;
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 800px;
}

.parallax-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.price-table th, .price-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.price-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.price-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.price-table tr:hover {
    background-color: var(--medium-gray);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: var(--light-gray);
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 15px;
    display: none;
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.faq-question.active + .faq-answer {
    display: block;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer Styles */
footer {
    background-color: #045a2a;
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #59A71E;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--medium-gray);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.company-info {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        z-index: 100;
    }
    
    .menu.active {
        display: flex;
    }
    
    .hero {
        height: 350px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 300px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 20px;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
    }
}