
.section {
    padding: 60px 20px;
    text-align: center;
}
.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}
.section p {
    font-size: 18px;
    margin-bottom: 40px;
}
.services, .about, .clients {
    background-color: #f8f5f0;
}
.services .service, .about .about-content, .clients .client {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}
.services .service div, .about .about-content div, .clients .client div{
    flex: 1;
    padding: 20px;
}
.services .service div h3, .about .about-content div h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
}
.services .service div p, .about .about-content div p {
    font-size: 16px;
}
.about {
    background-color: #f8f5f0;
}
.about .about-content {
    flex-direction: column;
}
.about .about-content div {
    text-align: left;
}
.about .about-content img {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
}

.cta-section{
    text-align: center;
    padding: 60px 20px;
   
 }
 .cta-section p{
    font-size: 16px;
    margin-bottom: 40px;
 }
 .cta-section h3{
    font-size: 32px;
    margin-bottom: 20px;
 }
.cta-section .btn {
    background-color: #35726e;
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    
}
.footer {
    background-color: #1d3f38;
    color: white;
    padding: 40px 20px;
   
}
.footer .footer-col {
    display: inline-table;
    width: 20%;
    margin: 0 1%;
    vertical-align: top;
}
.footer .footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
}
.footer .footer-col p, .footer .footer-col a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}
.footer .footer-col a:hover {
    text-decoration: underline;
}
.footer .social-icons a {
    display: inline-block;
    margin: 10px 5px;
    color: white;
    font-size: 18px;
}
.box-section {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #f4f4f4;
}

.box {
    background-color: #fff;
    width: 23%; /* Adjusted for four boxes to fit in one row */
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.box:hover {
    opacity: 0.7;
    transform: translateY(-5px);
}

.icon i {
    font-size: 50px;
    color: #333;
    transition: color 0.3s ease;
}
.icon-name{
    color: #1d3f38;
    font-weight: 600;
    font-size: 24px;
  text-decoration-line: none;
}

.box:hover .icon i {
    color: #ff0000; /* Changes to red on hover */
}

h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #333;
}

p {
    font-size: 14px;
    color: #0a0a0a;
}

@media screen and (max-width: 768px) {
    .box {
        width: 48%; /* Two boxes per row on smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .box {
        width: 100%; /* One box per row on the smallest screens */
    }
}