html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7fafd;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  background: #1a365d;
  color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.07);
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
}
.logo span {
  color: #38b6ff;
  font-weight: 400;
}
nav {
  float: right;
  margin-top: 0.5rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #38b6ff;
}
.hero {
  background: linear-gradient(120deg, #38b6ff 0%, #1a365d 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0 4rem 0;
  position: relative;
}
.hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.cta-btn {
  background: #fff;
  color: #1a365d;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(56, 182, 255, 0.12);
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #38b6ff;
  color: #fff;
}
section {
  padding: 4rem 0 3rem 0;
}
section h2 {
  color: #1a365d;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #e3f2fd;
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-left: 50%;
  transform: translateX(-50%);
}
#about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
  text-align: center;
}
.about-box, .clients-list, .client { display: none !important; }
.about-text {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.15rem;
  color: #444;
  text-align: center;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  line-height: 1.7;
}
.services-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 3rem 2rem 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(45, 55, 72, 0.08);
}
.service {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 1.5rem 1rem 1rem 1rem;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  margin-bottom: 0;
}
.service-icon {
  margin-bottom: 1rem;
}
.service h3 {
  color: #2d3748;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.service p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
}
#contact {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.contact-flex {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}
.contact-icon {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.contact-content {
  flex: 1 1 320px;
  min-width: 280px;
  text-align: center;
}
.contact-lead {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}
.contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(45, 55, 72, 0.1);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 1px solid #e2e8f0;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #63b3ed;
  box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
}
.contact-form button {
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  color: #fff;
  border: none;
  padding: 1rem 0;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(44, 82, 130, 0.3);
}
.contact-form button:hover {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(44, 82, 130, 0.4);
}
.contact-note {
  text-align: center;
  margin-top: 1.5rem;
  color: #4a5568;
  font-size: 1rem;
}
.contact-note a {
  color: #2c5282;
  text-decoration: underline;
  font-weight: 600;
}
.linkedin-link {
  display: inline-block;
  margin-left: 0.5rem;
  color: #0077b5 !important;
  text-decoration: none !important;
  transition: transform 0.2s ease;
}
.linkedin-link:hover {
  transform: scale(1.1);
}
footer {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1rem;
  margin-top: 2rem;
}
@media (max-width: 800px) {
  .container {
    width: 95%;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  nav {
    float: none;
    text-align: center;
    margin-top: 1rem;
  }
  
  nav a {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 0.9rem;
  }
  
  header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero {
    padding: 3rem 0 2.5rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-btn {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
  }
  
  section {
    padding: 2.5rem 0 2rem 0;
  }
  
  section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .about-text {
    font-size: 1rem;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
  }
  
  .services-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .service {
    min-width: 0;
    max-width: 100%;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
  
  .service h3 {
    font-size: 1.1rem;
  }
  
  .service p {
    font-size: 0.95rem;
  }
  
  #contact {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .contact-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .contact-content {
    min-width: 0;
    width: 100%;
  }
  
  .contact-lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .contact-form {
    max-width: 100%;
    padding: 1.5rem 1rem 1rem 1rem;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
  
  .contact-form button {
    padding: 0.8rem 0;
    font-size: 1rem;
  }
  
  .contact-note {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  nav a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    font-size: 0.85rem;
  }
  
  .services-list {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
  
  .contact-form {
    padding: 1.2rem 0.8rem 0.8rem 0.8rem;
  }
} 