/* Reset and base styles */
:root {
  --primary-color: #2c2e83;
  --accent-color: #f59e0b;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: rgba(44, 46, 131, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Container */
.container {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header and logo */
header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  background-color: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1rem;
}

h1 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: bold;
}

/* Main card */
.card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  width: 100%;
  text-align: center;
}

.coming-soon-banner {
  margin-bottom: 1.5rem;
}

.coming-soon-banner span {
  background-color: rgba(44, 46, 131, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  display: inline-block;
}

h2 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.description {
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background-color: var(--light-gray);
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
}

.service-icon {
  background-color: var(--primary-color);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #666;
  font-size: 0.875rem;
}

/* Contact information */
.contact-info {
  background-color: var(--light-gray);
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.contact-details {
  margin-top: 1rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Button */
.contact-button {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.contact-button:hover {
  opacity: 0.9;
}

.contact-button i {
  margin-right: 0.5rem;
}

/* Social links */
.social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  color: #999;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
}

/* Footer */
footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #777;
}