@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap");

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

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f0f0f0;
  font-size: 16px;
}

.container {
  max-width: 720px;
  min-width: 320px;
  margin: 0 auto 50px;
  background: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  margin: 10px auto 20px;

}

/* Header */
header {
  background: #6499e9;
  color: white;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
}

/* Sections */
.section, header, footer {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #6499e9;
  letter-spacing: 1px;
}

.section p {
  line-height: 1.7;
}

/* Social Links */
.links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.links a {
  display: inline-block;
  padding: 8px 15px;
  background: #6499e9;
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.links a:hover {
  background: #4a7bc8;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    max-width: 95%;
  }

  .section {
    padding: 20px;
  }
}