 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: 'Arial', sans-serif;
     line-height: 1.6;
     color: #2c3e50;
     background-color: #f8f9fa;
 }
 
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }
 
 header {
     background: linear-gradient(135deg, #2c3e50, #34495e);
     color: white;
     padding: 1rem 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }
 
 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
 }
 
 .logo h1 {
     font-size: 2rem;
     font-weight: bold;
     color: #f39c12;
 }
 
 .logo p {
     font-size: 0.9rem;
     opacity: 0.9;
 }
 
 nav ul {
     list-style: none;
     display: flex;
     gap: 2rem;
 }
 
 nav a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
 }
 
 nav a:hover {
     color: #f39c12;
 }
 
 .hero {
     background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23556b2f" width="1200" height="600"/><path fill="%23708238" d="M0 300L50 283.3C100 266.7 200 233.3 300 216.7C400 200 500 200 600 183.3C700 166.7 800 133.3 900 133.3C1000 133.3 1100 166.7 1150 183.3L1200 200V600H1150C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600H0V300Z"/></svg>');
     background-size: cover;
     background-position: center;
     color: white;
     padding: 4rem 0;
     text-align: center;
 }
 
 .hero h2 {
     font-size: 3rem;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }
 
 .hero p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }
 
 .btn {
     display: inline-block;
     background: #f39c12;
     color: white;
     padding: 12px 30px;
     text-decoration: none;
     border-radius: 5px;
     font-weight: bold;
     transition: background 0.3s;
     border: none;
     cursor: pointer;
 }
 
 .btn:hover {
     background: #e67e22;
 }
 
 .services {
     padding: 4rem 0;
     background: white;
 }
 
 .section-title {
     text-align: center;
     font-size: 2.5rem;
     margin-bottom: 3rem;
     color: #2c3e50;
 }
 
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 2rem;
 }
 
 .service-card {
     background: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     text-align: center;
     transition: transform 0.3s;
 }
 
 .service-card:hover {
     transform: translateY(-5px);
 }
 
 .service-icon {
     font-size: 3rem;
     margin-bottom: 1rem;
     color: #f39c12;
 }
 
 .about {
     padding: 4rem 0;
     background: #ecf0f1;
 }
 
 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center;
 }
 
 .about-text h3 {
     font-size: 2rem;
     margin-bottom: 1rem;
     color: #2c3e50;
 }
 
 .about-image {
     background: linear-gradient(45deg, #556b2f, #708238);
     height: 300px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.2rem;
     text-align: center;
 }
 
 .contact {
     padding: 4rem 0;
     background: #2c3e50;
     color: white;
 }
 
 .contact-info {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     text-align: center;
 }
 
 .contact-item {
     padding: 1rem;
 }
 
 .contact-item h4 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
     color: #f39c12;
 }
 
 footer {
     background: #1a252f;
     color: white;
     text-align: center;
     padding: 2rem 0;
 }
 
 @media (max-width: 768px) {
     .header-content {
         flex-direction: column;
         gap: 1rem;
     }
     nav ul {
         gap: 1rem;
     }
     .hero h2 {
         font-size: 2rem;
     }
     .about-content {
         grid-template-columns: 1fr;
     }
     .services-grid {
         grid-template-columns: 1fr;
     }
 }