/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: linear-gradient(135deg, #f5f3ec 0%, #ede8d9 25%, #e8e1d0 75%, #f5f3ec 100%);
  color: #1a2952;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(26, 41, 82, 0.1) 0%, transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(26, 41, 82, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
  z-index: -1;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #1a2952 0%, #2c4a7d 25%, #3d5b8f 75%, #1a2952 100%);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 41, 82, 0.3);
  position: relative;
  overflow: hidden;
}

.header-logo {
  margin-bottom: 1rem;
}

.header-logo img {
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3)) saturate(1.1) brightness(1.1);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,0 80,20 Q100,50 80,80 Q50,100 20,80 Q0,50 20,20 Z" fill="none" stroke="rgba(245,243,236,0.2)" stroke-width="0.5"/></svg>') repeat;
  opacity: 0.3;
}

header h1 {
  margin: 0 0 0.5rem 0;
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.logo-link {
  text-decoration: none;
  color: #f5f3ec;
  position: relative;
  z-index: 1;
}

.logo-link:hover {
  color: #ffd700;
  transition: color 0.3s ease;
}

.tagline {
  font-style: italic;
  margin: 0.5rem 0 1.5rem 0;
  font-size: 1.4rem;
  color: #f5f3ec;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

nav {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

nav a {
  margin: 0 1.5rem;
  text-decoration: none;
  color: #f5f3ec;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  padding: 0.7rem 1.2rem;
  border-radius: 25px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
}

nav a:hover {
  background: rgba(245, 243, 236, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(245, 243, 236, 0.3);
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.5);
}

/* Main Content */
main {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(26, 41, 82, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(26, 41, 82, 0.15);
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: #1a2952;
  font-weight: 500;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #1a2952;
  line-height: 1.8;
  font-weight: 500;
}

/* Service Grid */
.services {
  margin: 4rem 0;
}

.services h3 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #1a2952;
  font-weight: 500;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(26, 41, 82, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(26, 41, 82, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 41, 82, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26, 41, 82, 0.2);
  border-color: rgba(26, 41, 82, 0.4);
}

.service-card h4 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #1a2952;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card p {
  margin-bottom: 2rem;
  color: #1a2952;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Buttons */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1a2952 0%, #2c4a7d 100%);
  color: #f5f3ec;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(26, 41, 82, 0.4);
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 41, 82, 0.6);
  border-color: #ffd700;
  background: linear-gradient(135deg, #2c4a7d 0%, #3d5b8f 100%);
  color: #ffd700;
}

/* Page Headers */
.page-header {
  text-align: center;
  margin-bottom: 4rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(26, 41, 82, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(26, 41, 82, 0.15);
}

.page-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #1a2952;
  font-weight: 500;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  color: #1a2952;
  line-height: 1.7;
  font-weight: 500;
}

/* Content Sections */
.content {
  max-width: 900px;
  margin: 0 auto;
}

.content h3 {
  color: #1a2952;
  font-size: 2.6rem;
  margin: 3rem 0 1.5rem 0;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content p {
  margin-bottom: 1.8rem;
  font-size: 1.3rem;
  color: #1a2952;
  line-height: 1.8;
  font-weight: 400;
}

.content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: #1a2952;
  font-size: 1.2rem;
}

.content li {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Forms */
.contact-form {
  background: rgba(26, 41, 82, 0.05);
  padding: 2rem;
  border-radius: 20px;
  margin-top: 2rem;
  border: 2px solid rgba(26, 41, 82, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(26, 41, 82, 0.15);
}

.contact-form label {
  display: block;
  margin: 1rem 0 0.5rem 0;
  font-weight: bold;
  color: #1a2952;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(26, 41, 82, 0.3);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #1a2952;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1a2952;
  box-shadow: 0 0 10px rgba(26, 41, 82, 0.3);
}

.contact-form button {
  margin-top: 1rem;
}

/* Special Sections */
.about {
  background: rgba(26, 41, 82, 0.15);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(26, 41, 82, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(26, 41, 82, 0.2);
  text-align: center;
  margin: 4rem 0;
}

.about h3 {
  color: #1a2952;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about h4 {
  color: #1a2952;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about p {
  color: #1a2952;
  line-height: 1.8;
  font-size: 1.2rem;
  font-weight: 500;
}

.about ul {
  color: #e0e0e0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.opportunities {
  background: rgba(255, 215, 0, 0.1);
  padding: 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15);
}

.opportunities h3 {
  color: #ffd700;
  margin-top: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  font-weight: 500;
  font-size: 2.2rem;
}

.pricing {
  background: rgba(255, 215, 0, 0.1);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
  margin: 3rem 0;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.6);
}

.pricing h4 {
  color: #ffd700;
  font-size: 2.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.price {
  font-size: 2.8rem;
  font-weight: 500;
  color: #ffd700;
  margin: 1.5rem 0;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
}

.pricing p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 1.2rem;
  font-weight: 400;
}

.pricing ul {
  color: #e0e0e0;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonials {
  margin: 3rem 0;
}

.testimonial {
  background: rgba(255, 215, 0, 0.08);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 1rem 0;
  font-style: italic;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.1);
  font-size: 1.2rem;
}

.testimonial-author {
  font-weight: bold;
  text-align: right;
  margin-top: 1rem;
  font-style: normal;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a2952 0%, #2c4a7d 25%, #3d5b8f 75%, #1a2952 100%);
  text-align: center;
  padding: 3rem 1rem;
  margin-top: 4rem;
  border-top: 3px solid #ffd700;
  box-shadow: 0 -6px 24px rgba(26, 41, 82, 0.3);
}

footer p {
  color: #f5f3ec;
  margin: 0;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
  white-space: nowrap;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.footer-links {
  margin-top: 1.5rem;
}

.footer-links a {
  margin: 0 1.5rem;
  text-decoration: none;
  color: #f5f3ec;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.7rem 1.2rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
  border: 2px solid transparent;
}

.footer-links a:hover {
  background: rgba(245, 243, 236, 0.2);
  transform: translateY(-2px);
  color: #ffd700;
  box-shadow: 0 4px 8px rgba(245, 243, 236, 0.3);
  border-color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  header h1 {
    font-size: 2.8rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  nav a {
    margin: 0 0.5rem;
    font-size: 1.1rem;
  }
  
  main {
    padding: 1rem;
  }
  
  .hero h2 {
    font-size: 2.4rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  footer p {
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.3;
    padding: 0 1rem;
  }
  
  .footer-links {
    margin-top: 1rem;
  }
  
  .footer-links a {
    margin: 0.5rem 0.8rem;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
  
  .services h3 {
    font-size: 2.2rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card h4 {
    font-size: 1.4rem;
  }
  
  .service-card p {
    font-size: 1rem;
  }
  
  .page-header h2 {
    font-size: 2.6rem;
  }
  
  .content h3 {
    font-size: 2.2rem;
  }
  
  .content p {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2.2rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  nav a {
    display: block;
    margin: 0.5rem 0;
    font-size: 1rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .services h3 {
    font-size: 2rem;
  }
  
  .service-card h4 {
    font-size: 1.3rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
  }
  
  .page-header h2 {
    font-size: 2.2rem;
  }
  
  .content h3 {
    font-size: 2rem;
  }
  
  .content p {
    font-size: 1rem;
  }
  
  .cta-button {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}
