﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --hot-ping: #f64c7e;
  --blue: #18a1fd;
  --yellow: #fbe619;
  --dark: #e2e8f0;
  --gray: #f8fafc;
}

body {
  background-color: white;
}

.section-information {
  background-color: var(--gray);
  border-radius: 15px;
}

.announ-page-hero-wrapper {
  width: 100%;
  height: 50px;
  background-color: var(--blue);
}
.contain-section {
  display: flex;
  justify-content: space-between;
  background-color: var(--about-bg-page);
  align-items: center;
  height: 400px;
}

.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card-button {
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-button:hover {
  transform: translateY(-5px);
  text-decoration-line: underline;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card-button .icons {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.card-button .title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.card-button .subtitle {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.card-button .subtitle,
.card-button .title {
  color: white;
}

.card-button .primary {
  background-color: #0056b3;
  box-shadow: 0 8px 12px rgba(0, 123, 255, 0.2);
}

.contact-form {
  background-color: var(--slate-gray);
  padding: 35px;
  border-radius: 5px;
  box-shadow: 0 3px 8px rgba(255, 255, 255, 0.3);
}

.contact-box {
  display: flex;
  align-items: center;
  background-color: #ffff;
  border-radius: 30px;
  padding: 10px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 260px;
  transition: 0.5s;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.icons {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: var(--blue);
  font-size: 18px;
  box-shadow: 0 3px 8px rgba(0, 192, 240, 0.2);
}

.texts {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 15px;
}

@media (max-width: 1200px) {
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  h2 {
    font-size: 24px;
  }
  p {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  h2 {
    font-size: 24px;
  }
  p {
    font-size: 18px;
  }
}

@media (min-width: 576px) and (max-width) {
  h2 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  h2 {
    font-size: 18px !important;
  }
  p {
    font-size: 16px !important;
  }
}
