/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  width: 150px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:hover {
  color: #0066cc;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 40px 80px; 
  background: #f9f9f9;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 15px;
}

.hero-img {
  max-width: 40%;
}

/* About Section */
#about {
  padding: 80px 40px;
}

#about h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.about-content {
  display: flex;
  align-items: center;
}

.about-content img {
  width: 45%;
  margin-right: 40px;
}

.about-text p {
  margin-bottom: 15px;
}

/* Contact Section */
#contact {
  padding: 80px 40px;
  background: #f9f9f9;
}

#contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  padding: 12px;
  border: none;
  background: #0066cc;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.contact-form button:hover {
  background: #005bb5;
}

.hidden {
  display: none;
}

#thank-you {
  text-align: center;
  margin-top: 20px;
  color: green;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

