/* Neden ziyaret etmelisiniz ve katılımcı profilinin ortak css dosyası */

:root {
  --primarycolor: #FBAD18;
  --secondarycolor: #85837D;
  --thirdcolor: #0c243d;
}


.container-nze {
    min-height: 82vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
    padding-top: 40px;
}

.subtitle-visit {
    font-size: 1.3rem;
    color: var(--thirdcolor);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--primarycolor);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    font-style: italic;
}

.content-section {
    margin-bottom: 40px;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: start;
}

.benefits-list {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primarycolor);
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-section-visit {
    width: 100%;
    margin-top: 50px;
}

.faq-item-visit {
    background-color: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question-visit {
    background-color: var(--thirdcolor);
    color: white;
    padding: 20px 30px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer-visit {
    padding: 25px 30px;
    margin: 0;
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
}

.card-grid-nze {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.h1-ziyaretci {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000000;
  text-align: center;
}


.card-nze {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.icon-nze {
    font-size: 28px;
    color: #1a3b5d;
    margin-bottom: 15px;
}

.card-text-nze {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive tasarım */

@media (max-width: 768px) {
    .subtitle-visit {
        font-size: 1.1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .faq-question-visit {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer-visit {
        padding: 20px;
    }
    
    .benefits-list {
        padding: 0 20px;
    }
}

.button {
  display: inline-flex;
  align-items: center;
  background-color: var(--primarycolor);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #ebc856;
  opacity: 0.9;
}

.button-icon {
  margin-right: 10px;
  transform: rotate(-45deg);
}