body { font-family: 'Montserrat', sans-serif; margin: 0; padding: 0; color: #333; line-height: 1.6; background-color: #f9f9f9; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 20px 0; }
header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: fixed; width: 100%; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6em; font-weight: 700; color: #c0392b; text-decoration: none; }
.nav-links { list-style: none; display: flex; margin: 0; padding: 0; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: #444; font-weight: 600; font-size: 0.85em; text-transform: uppercase; letter-spacing: 1px; }
.hero { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpg') no-repeat center center/cover; height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; margin-top: 70px; }
.hero h1 { font-size: 3.2em; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.3em; margin-bottom: 35px; }
.btn { background: #c0392b; color: #fff; padding: 14px 35px; text-decoration: none; border-radius: 30px; font-weight: 600; display: inline-block; transition: transform 0.3s; }
.btn:hover { transform: scale(1.05); }
.about { padding: 100px 0; background: #fff; }
.about-content { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-text h2 { color: #c0392b; font-size: 2.4em; margin-bottom: 25px; }
.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.specialties { padding: 100px 0; text-align: center; background: #f4f4f4; }
.specialties h2 { font-size: 2.4em; margin-bottom: 50px; color: #c0392b; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.card { background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: translateY -10s; }
.card:hover { transform: translateY(-10px); }
.card img { width: 100%; border-radius: 10px; margin-bottom: 25px; }
footer { background: #1a1a1a; color: #999; text-align: center; padding: 60px 0; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: #c0392b; text-decoration: none; margin: 0 15px; font-weight: 600; }
.clickable-image { cursor: pointer; transition: opacity 0.3s; }
.clickable-image:hover { opacity: 0.9; }
@media (max-width: 768px) { .about-content { flex-direction: column; } .hero h1 { font-size: 2.2em; } .nav-links { display: none; } }