@charset "UTF-8";

/* ===== Layout & Grid System ===== */
.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container::after {
  content: "";
  display: table;
  clear: both;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.col-1 { float: left; width: 8.333%; padding: 0 10px; }
.col-2 { float: left; width: 16.666%; padding: 0 10px; }
.col-3 { float: left; width: 25%; padding: 0 10px; }
.col-4 { float: left; width: 33.333%; padding: 0 10px; }
.col-5 { float: left; width: 41.666%; padding: 0 10px; }
.col-6 { float: left; width: 50%; padding: 0 10px; }
.col-7 { float: left; width: 58.333%; padding: 0 10px; }
.col-8 { float: left; width: 66.666%; padding: 0 10px; }
.col-9 { float: left; width: 75%; padding: 0 10px; }
.col-10 { float: left; width: 83.333%; padding: 0 10px; }
.col-11 { float: left; width: 91.666%; padding: 0 10px; }
.col-12 { float: left; width: 100%; padding: 0 10px; }

/* ===== Flexbox Utilities ===== */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ===== Section Spacing ===== */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title .subtitle {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== Card Component ===== */
.card {
  background: #fff;
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ===== Responsive Breakpoints ===== */
@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1170px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  .section {
    padding: 40px 0;
  }
  .section-title h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 10px;
  }
  .col-md-6 { width: 50%; }
  .col-md-12 { width: 100%; }
  .section {
    padding: 30px 0;
  }
  .section-title {
    margin-bottom: 25px;
  }
  .section-title h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .container {
    padding: 0 8px;
  }
  .col-sm-12 { width: 100%; }
  .col-sm-6 { width: 50%; }
  .section {
    padding: 25px 0;
  }
}

@media screen and (max-width: 480px) {
  .col-xs-12 { width: 100%; }
  .col-xs-6 { width: 50%; }
  body {
    font-size: 13px;
  }
}
