body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f7f9fc;
    color: #333;
}

header {
    background: #2b2d42;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    display: inline;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #ffcc00;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: #edf2f4;
}

.hero h2 {
    font-size: 32px;
}

.cta-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    background: #ef233c;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.about {
    padding: 40px 20px;
    background: white;
    text-align: center;
}

footer {
    padding: 20px;
    background: #2b2d42;
    color: white;
    text-align: center;
}
.form-section {
    padding: 40px 20px;
    background: #f0f4f8;
}

.form-container {
    background: white;
    padding: 30px;
    margin: auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="number"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

form textarea {
    resize: vertical;
    min-height: 80px;
}

form input[type="submit"] {
    background-color: #ef233c;
    color: white;
    border: none;
    padding: 12px 20px;
    margin-top: 20px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

form input[type="submit"]:hover {
    background-color: #d90429;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
}
.card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #444;
}
.card span {
  font-size: 26px;
  font-weight: bold;
  color: #2b2d42;
}
.row-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 500px;
}

.column canvas,
.column table {
  width: 100%;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

@media (max-width: 1100px) {
  .row-grid {
    flex-direction: column;
  }
}
.table-container {
    margin-top: 20px;
}
table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
th, td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
th {
    background: #f0f0f0;
    color: #333;
    font-weight: 600;
}
tr:hover {
    background: #f9f9f9;
}