/* ========= HERO SECTION =================== */
.hero { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; color: var(--bg-white); overflow: hidden; background-image: url('../img/about-us.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; }
.hero::after{content: ''; position: absolute; inset: 0; background-color: rgba(7, 70, 70, 0.4);}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; animation: fadeInDown 0.8s ease; margin-top: 10%; padding: 0 20px;}
.hero-title { color: var(--bg-white); font-size: 5rem; font-weight: bold; margin-bottom: 2rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); letter-spacing: 1px; }
.hero-subtitle { font-size: 2rem; margin-bottom: 2rem; font-weight: normal; color: var(--bg-white); text-shadow: 1px 1px 2px rgba(0,0,0,0.2); font-weight: bold;}
.cta-button { background-color: var(--color-cream); color: var(--brand-color); padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: bold; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.cta-button:hover { background-color: var(--brand-color); color: var(--bg-white); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
/*==========================================*/
.container{display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1200px; margin: 5rem auto; padding: 4rem 2rem; background: linear-gradient(135deg,var(--bg-2) 0%,var(--bg-white) 100%); border-radius: 8px;}
.container h4{font-size: 1.5rem; color: var(--brand-color); margin-bottom: 1rem; font-weight: bold; letter-spacing: 0.5px;}
.container p{font-size: 1rem; color: var(--txt); margin-bottom: 0.5rem; font-weight: normal; letter-spacing: 0.5px; line-height: 1.5;}
/*==========================================*/
.grid-people{display: flex; justify-content: center; gap: 100px; text-align: center; padding-bottom: 4rem;}
.b-pic{display: inline-block; width: 200px; height: 200px; border-radius: 50%; overflow: hidden; margin-bottom: 1rem; background-repeat: no-repeat; background-size: cover; background-position: center;}
.h4-name{font-size: 1.1rem; color: var(--brand-color); margin-bottom: 0.5rem; font-weight: bold;}
.p-exec{font-size: 0.9rem; color: var(--color-brown); font-weight: normal;}
@media (max-width:768px){
.hero{height:350px;}
.hero-title{font-size:3rem;margin-bottom:1rem;}
.hero-subtitle{font-size:1.3rem;margin-bottom:1.5rem;}
.hero-content{margin-top:15%;padding:0 15px;}
.container{grid-template-columns:1fr;gap:15px;margin:2rem auto;padding:2rem 1rem;}
.container h4{font-size:1.3rem;}
.container div:last-child h4{display:none;}
.container p{font-size:0.95rem;}
.grid-people{gap:60px;padding-bottom:2rem;flex-wrap:wrap;}
.b-pic{width:150px;height:150px;}
.cta-button{padding:0.8rem 2rem;font-size:1rem;}
}
@media (max-width:480px){
.hero{height:280px;}
.hero-content{margin-top:5%;padding:0 10px;}
.hero-title{font-size:2rem;margin-bottom:0.8rem;letter-spacing:0.5px;}
.hero-subtitle{font-size:1rem;margin-bottom:1rem;}
.container{grid-template-columns:1fr;gap:10px;margin:1.5rem auto;padding:1.5rem 0.75rem;border-radius:4px;}
.container h4{font-size:1.1rem;margin-bottom:0.8rem;}
.container div:last-child h4{display:none;}
.container p{font-size:0.9rem;margin-bottom:0.4rem;}
.grid-people{display:flex;flex-direction:column;gap:30px;padding-bottom:1rem;}
.b-pic{width:120px;height:120px;margin-bottom:0.8rem;}
.h4-name{font-size:1rem;margin-bottom:0.3rem;}
.p-exec{font-size:0.85rem;}
.cta-button{padding:0.7rem 1.5rem;font-size:0.9rem;border-radius:40px;}
}
@media (min-width:1024px){
.hero{height:550px;}
.hero-title{font-size:5rem;}
.container{grid-template-columns:1fr 1fr;max-width:1200px;}
.grid-people{gap:100px;}
.b-pic{width:200px;height:200px;}
}