/* General Page Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    /*background-color: #1B3B1A;
    padding: 50px 0;*/
}

/* About Container */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;  /* Ensures responsiveness */
}

.about-content {
    flex: 1;
    max-width: 50%;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #1B3B1A;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1B3B1A;
    margin-bottom: 25px;
}

.about-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 20px;
    font-weight: 600;
}

.contact-number {
    font-size: 24px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #1B3B1A;
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color:#fff;
}

/* About Image */
.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 20px;
    }

    .about-content, .about-image {
        max-width: 100%;
    }

    .about-title {
        font-size: 28px;
    }

    .about-subtitle {
        font-size: 20px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .contact-number {
        font-size: 20px;
    }
}
