/* PageOne Site Builder Generated CSS */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
  line-height: 1.6; 
  color: #333; 
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

/* Navigation */
.site-navigation { 
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb; 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  padding: 1rem 0; 
}

.nav-container { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-logo { 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: #333333; 
  text-decoration: none; 
}

.site-logo-img {
  object-fit: contain;
  display: block;
}

.nav-menu { 
  display: flex; 
  gap: 2rem; 
  list-style: none; 
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link { 
  color: #333333; 
  text-decoration: none; 
  font-weight: 500; 
  transition: all 0.3s ease; 
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover { 
  color: #4FD5D6; 
}

.nav-link.active {
  color: #4FD5D6;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4FD5D6;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-icon {
  font-size: 0.75em;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background-color: #f8f9fa;
  color: #4FD5D6;
}

.dropdown-link.active {
  color: #4FD5D6;
  font-weight: 600;
}

.cta-button {
  margin-left: 15px;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-button a {
  color: inherit;
  text-decoration: none;
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Content */
.site-content { 
  min-height: calc(100vh - 200px); 
  padding: 2rem 0; 
}

.welcome-section { 
  text-align: center; 
  padding: 6rem 2rem; 
  background: linear-gradient(135deg, #4FD5D620, #E94E7720); 
  border-radius: 12px;
  margin: 2rem 0;
}

.welcome-section h2 { 
  font-size: 2.5rem; 
  margin-bottom: 1rem; 
}

.welcome-section p { 
  font-size: 1.1rem; 
  color: #666; 
}

/* Component Styles */
.hero-section { 
  background: linear-gradient(135deg, #4FD5D620, #E94E7720); 
  text-align: center; 
  padding: 6rem 0; 
  border-radius: 12px;
  margin: 2rem 0;
}

.hero-title { 
  font-size: 3rem; 
  font-weight: 700; 
  margin-bottom: 1rem; 
}

.hero-subtitle { 
  font-size: 1.25rem; 
  margin-bottom: 2rem; 
  color: #666; 
}

.hero-cta { 
  display: inline-block; 
  background: #4FD5D6; 
  color: white; 
  padding: 1rem 2rem; 
  border-radius: 8px; 
  text-decoration: none; 
  font-weight: 600; 
  transition: transform 0.3s ease; 
}

.hero-cta:hover { 
  transform: translateY(-2px); 
}

.text-section { 
  padding: 4rem 0; 
}

.text-section h2 { 
  font-size: 2rem; 
  margin-bottom: 1rem; 
}

.text-section p { 
  font-size: 1.1rem; 
  line-height: 1.8; 
}

.feature-grid {
  padding: 4rem 0;
  background: #f8f9fa;
  border-radius: 12px;
  margin: 2rem 0;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-section {
  padding: 4rem 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form div {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4FD5D6;
}

.contact-form button {
  background: #4FD5D6;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #3bc5c6;
  transform: translateY(-2px);
}

.site-footer { 
  background: #1a1a1a; 
  color: white; 
  text-align: center; 
  padding: 2rem 0; 
  margin-top: 4rem; 
}

.site-footer a { 
  color: #4FD5D6; 
  text-decoration: none; 
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu .nav-item {
    border-bottom: 1px solid #e5e7eb;
  }
  
  .nav-menu .nav-item:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    display: block;
    padding: 1rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    margin-left: 1rem;
  }
}