/* === Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 700;
}

h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: #3195ff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #1a5fd1;
  transform: translateY(-2px);
}

/* === Hero === */
.hero {
  text-align: center;
  background: #f4f8ff;
  padding: 100px 20px 80px;
}

.logo {
  font-family: 'Roboto', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 15px;
}

.hero .accent {
  color: #3195ff;
}

.hero .subtitle {
  color: #303030;
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 25px;
}

/* === Process === */
.process {
  background: #fff;
  padding: 80px 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  flex: 1 1 250px;
  background: #fafafa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.card h3{
  font-size: 1.2rem;
  line-height: 1.2;
}

.card p{
  font-size: 0.8rem;
  line-height: 1.2;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.1rem;
  margin: 15px 0 10px;
}

/* === Integration === */
.integration {
  background: #f9fafc;
  padding: 80px 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step img {
  width: 48px;
  flex-shrink: 0;
  border-radius: 8px;
}

.step h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.step p {
  font-size: 0.9rem;
  line-height: 1.2;
}

/* === Services === */
.services {
  padding: 80px 20px;
  background: #fff;
}

.services .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
}

.services .grid > div {
  flex: 1 1 45%;
  background: #fafafa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* === FAQ === */
.faq {
  background: #f9fafc;
  padding: 80px 20px;
}

.faq-item {
  max-width: 700px;
  margin: 0 auto 25px;
}

.question {
  display: flex;
  align-items: center;
  padding: 0 20px;/
}

.q-icon {
  width: 32px;
  height: 32px;
  margin-right: 15px;
  flex-shrink: 0;
}

.question p {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.answer {
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
}

.a-icon {
  width: 32px;
  height: 32px;
  margin-right: 15px;
  flex-shrink: 0;
}

.answer h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.answer p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

/* === CTA === */
.cta {
  background: #3195ff;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px 10px 0 0;
}

.cta h2 {
  color: #fff;
}

.cta p {
  margin: 10px 0 25px;
  font-size: 1.1rem;
}

.cta .btn {
  background: #fff;
  color: #3195ff;
}

.cta .btn:hover {
  background: #f0f0f0;
}

/* === Contact === */
.contact {
  background: #f9fafc;
  padding: 80px 20px 40px;
}

.contact__content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact__info {
  flex: 1 1 40%;
  font-size: 1.8rem;
  color: #fff;
  background-color: #3195FF;
  padding: 42px 24px;
  border-radius: 24px;
  min-height: 400px;
}

.contact__form {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact__form h3 {
  margin-bottom: 5px;
  font-size: 3rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: #3195ff;
  box-shadow: 0 0 0 2px rgba(43, 123, 255, 0.2);
}

.contact__form textarea {
  height: 120px;
  resize: vertical;
}

.contact__form button {
  align-self: flex-start;
}

/* Form notice styles */
#formNotice {
  padding: 10px;
  border-radius: 4px;
  font-weight: 500;
}

#formNotice.success {
  background-color: rgba(10, 139, 43, 0.1);
  color: #0a8b2b;
  border: 1px solid rgba(10, 139, 43, 0.3);
}

#formNotice.error {
  background-color: rgba(210, 58, 58, 0.1);
  color: #d23a3a;
  border: 1px solid rgba(210, 58, 58, 0.3);
}

/* === Footer === */
.footer {
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  padding-top: 25px;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  justify-content: space-around;
}

.footer p{
  font-size: 1.25rem;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 900px) {
  .services .grid > div {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .cta {
    border-radius: 0;
  }

  .contact__content {
    flex-direction: column;
  }

  .contact__info, .contact__form {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 10px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .card, .services .grid > div {
    padding: 20px;
  }
}