body {
  background: #ffffff;
  color: #000000;
}

.header {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 80px 20px 70px;
}

.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.header p {
    font-size: 16px;
    color: #ccc;
}


.apps h2 {
text-align: center;
margin-bottom: 40px;
}


.app-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}


.app-card {
position: relative;
background: #fff;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.app-card img {
width: 100%;
display: block;
}


.app-info {
    padding: 14px 16px 18px;
    text-align: center;
}

.app-title {
    font-size: 16px;
    font-weight: 600;
    margin: 6px 0 4px;
}

.app-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}




.overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.65);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
opacity: 0;
transition: opacity 0.25s ease;
}


.overlay a {
color: #fff;
text-decoration: none;
border: 1px solid #fff;
padding: 8px 20px;
border-radius: 20px;
}


.app-card:hover .overlay {
opacity: 1;
}


.footer {
background: #111;
color: #ddd;
text-align: center;
padding: 40px 20px;
margin-top: 80px;
}


.footer p {
margin: 6px 0;
}

/* ===== consent page ===== */

.consent-container {
  max-width: 420px;
  margin: 120px auto;
  padding: 0 20px;
  text-align: center;
}

.consent-title {
  font-size: 22px;
  margin-bottom: 32px;
  font-weight: 600;
}

.consent-label {
  display: block;
  text-align: left;
  font-size: 14px;
  margin-bottom: 18px;
}

.consent-input {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.consent-input:focus {
  outline: none;
  border-color: #111;
}

.consent-btn {
  width: 100%;
  margin-top: 24px;
  padding: 14px 0;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.consent-btn:hover {
  background: #000;
  transform: translateY(-1px);
}

.consent-guide {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.info-section {
  margin-top: 24px;
}

.info-section h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.info-list {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  font-size: 14px;
}

.info-list li {
  margin-bottom: 4px;
}

.result-box {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}

.result-box h4 {
  margin-top: 16px;
  margin-bottom: 8px;
}

.result-list {
  list-style: none;
  padding-left: 0;
}

.result-list li {
  padding: 6px 0;
  border-bottom: 1px solid #e0e0e0;
}
