* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #111;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: 60px;
  width: auto;
}

.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffd700;
}

/* Hero Section */
.hero {
  background: url('assets/background.jpg') no-repeat center center;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  font-weight: 300;
}

/* Why Greece Section */
.why-greece {
  padding: 4rem 2rem;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-greece h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #111;
}

.reasons-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.reason-item {
  flex: 1;
  min-width: 300px;
}

.reason-item h3 {
  margin-bottom: 1rem;
  color: #d4af37;
  font-size: 1.8rem;
}

.reason-item ul {
  padding-left: 1.5rem;
  list-style-type: none;
}

.reason-item li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.reason-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.reason-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dream-text {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: #f0f0f0;
  border-radius: 8px;
}

.dream-text h3 {
  font-size: 2rem;
  color: #111;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background-color: #f0f0f0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #111;
}

.contact-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.contact-card h3 {
  margin-bottom: 1rem;
  color: #d4af37;
  font-size: 1.5rem;
}

.contact-card p {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #111;
  color: white;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 1rem;
  }

  .nav-menu ul {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu li {
    margin: 0.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .reasons-grid {
    flex-direction: column;
  }

  .contact-cards {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .contact-card {
    padding: 1.5rem;
    max-width: 100%;
  }
}