:root {
  --primary: #25d96b;
  --accent: #282a70;
  --white: #ffffff;
  --dark: #1f1f1f;
  --gray: #f4f4f4;
  --font: 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background: var(--gray);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* Header */
header {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 30px 15px;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Nav */
nav {
  background: var(--accent);
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  background: var(--white);
  padding: 40px 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e65c00;
}

/* Content + Sidebar */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.main-content {
  flex: 1;
  min-width: 280px;
}

.main-content section {
  background: var(--white);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.main-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.main-content ul,
.main-content p {
  margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
  width: 100%;
  max-width: 350px;
  flex-shrink: 0;
  position: relative;
}

.sidebar > div {
  background: var(--white);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Contact CTA Block */
.contact-cta {
  text-align: center;
  margin: 40px auto;
  background: var(--primary);
  color: var(--white);
  padding: 30px 20px;
  border-radius: 8px;
}

.contact-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 30px 15px;
  margin-top: 40px;
  font-size: 0.95rem;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }

  .content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .sidebar {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-top: 10px;
  }

  .menu-links.show {
    display: flex;
  }

  .hero h2,
  .contact-cta h3,
  .main-content h2,
  .sidebar h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero h2,
  .contact-cta h3,
  .main-content h2 {
    font-size: 1.2rem;
  }
}

/* City Links Grid */
.city-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.city-links-grid a {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: center;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.city-links-grid a:hover {
  background-color: #e6f4ff;
  color: #000;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
  .city-links-grid {
    grid-template-columns: 1fr;
  }
}
