body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #222;
    background-color: #fff;
}
/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
    position: relative;
}
.logo img {
    height: 50px;
}
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}
.contact-btn a {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px;
}
.hero .subheading {
    font-size: 14px;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 10px;
}
.hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
}
/* About */
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
    flex-wrap: wrap;
}
.about-text {
    flex: 1;
    min-width: 300px;
}
.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}
.btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}
.about-image img {
    max-width: 300px;
    height: auto;
}
/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid #eee;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #222;
}
.social-icons img {
    width: 24px;
    margin: 0 8px;
}
/* Responsive */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        gap: 20px;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 40px;
        padding: 20px;
        border: 1px solid #eee;
    }
    .nav.active ul {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .contact-btn {
        display: none;
    }
    .about {
        flex-direction: column;
        text-align: center;
    }
}


body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #222;
}

.contact-button {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}

.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.4;
}

.divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0 40px;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  gap: 40px;
  align-items: center;
}

.about-left {
  flex: 1;
  min-width: 300px;
}

.about-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #888;
  display: block;
  margin-bottom: 10px;
}

.about-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-left p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.learn-more-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}

.about-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.phone-image {
  max-width: 100%;
  height: auto;
}

.site-footer {
  background: #f9f9f9;
  padding: 20px 40px;
  text-align: center;
  font-size: 14px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #222;
}

.social-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
