:root {
  --theme-primary: #03455D;
  --theme-secondary: #91F3FC;
  --text-dark: #1A1A1A;
  --white: #ffffff;
  --bg-light: #f9f9f9;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  background: var(--white);
  line-height: 1.6;
}

/* Section Styling */
.section-contact-info {
  padding: 100px 20px;
  background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
}

/* Wrapper and Card */
.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: 0.3s;
}

/* Header with decorative squares */
.contact-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.square-lg {
  width: 40px;
  height: 40px;
  background-color: var(--theme-primary);
  border-radius: 8px;
}

.square-sm {
  width: 24px;
  height: 24px;
  background-color: var(--theme-secondary);
  border-radius: 6px;
}

.contact-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

/* Contact Text */
.contact-details p {
  font-size: 18px;
  margin: 10px 0;
}

.link-highlight {
  color: var(--theme-primary);
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 20px;
  }

  .contact-header h2 {
    font-size: 28px;
  }

  .contact-details p {
    font-size: 16px;
  }
}
