/* style.css - نسخه ریسپانسیو */
/* -------------------- استایل‌های عمومی -------------------- */
@font-face {
    font-family: 'sans';
    src: url(font/IRANSansWeb.woff) format('woff');
    font-weight: normal;
    font-style: normal;
}
*{
    font-family: 'sans';
}
/* ========================================================== */
/* =========   فایل استایل نهایی و تمیز شده پروژه   ========= */
/* ========================================================== */


/* -------------------- 1. متغیرها و استایل‌های پایه -------------------- */
:root {
    --primary-color: #c0a062; /* طلایی ملایم */
    --secondary-color: #2c3e50; /* سرمه‌ای تیره */
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
    --text-color: #333;
    --font-family: 'Vazirmatn', sans-serif;
    --dark-blue: #2c3e50;
            --gold: #c0a062;
            --swiper-theme-color: var(--gold); /* رنگ اصلی فلش‌ها و نقاط */
}a

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    direction: rtl;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    scroll-behavior: smooth;
    margin:0px;
          padding: 0px;
               transition: background-color 0.6s ease-in-out;

}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}
.section-title2 {
    margin-top:30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.required {
    color: red;
    margin-right: 3px;
}


/* -------------------- 2. هدر و فوتر -------------------- */

/* هدر اصلی لندینگ پیج */
.hero-section {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height:100%;
}
.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom:-100px;
    margin-top:-100px;

    
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    width: 60%;
}









.hero-section2 {

    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: url('assets/images/baner.jpg') no-repeat center center/contain;
  background-color: #063120;
    transition: background-color 0.6s ease-in-out;

}

.hero-content2 {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero-title2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
.hero-subtitle2 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    width: 60%;
}












/* هدر صفحات داخلی */
.page-header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

/* فوتر عمومی */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 2rem 0;
    margin-top: 0px;
    position: relative;
    text-align:center;
}


/* -------------------- 3. المان‌های صفحه اصلی (لندینگ) -------------------- */

.gallery-section {
    padding: 60px 0;
    position: relative;
    background-color: white;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}
.gallery-item:hover {
    transform: translateY(-10px);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* بخش فراخوان عمل (CTA) */
.cta-section {
    position: relative;
    padding: 60px 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-title::after { background-color: var(--primary-color); }
.cta-text { max-width: 600px; margin: 0 auto 2rem auto; }
.btn-cta { background-color: var(--primary-color); color: #fff; font-size: 1.2rem; padding: 15px 40px; }
.btn-cta:hover { transform: scale(1.05); }
.back_btn{background-color:red;}
.btn-hero{font-size:1.5rem;
    margin-top:-50px;
}
.btn-gall{}


/* -------------------- 4. استایل فرم‌ها (قوانین، بررسی کاربر، ثبت نام) -------------------- */

.page-container {
    padding-top: 40px;
    padding-bottom: 40px;
}
.rules-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #555;
}

/* کارت اصلی فرم‌ها */
.rules-card, .check-user-card, .registration-form {
    background: #fff;
    border-radius: 10px;
    padding: 2rem 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.check-user-card {
    max-width: 500px;
    margin: auto;
}
.cta-button-container {
    text-align: center;
    margin-top: 2rem;
}

/* فیلدهای عمومی */
.form-group { margin-bottom: 1.5rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: #555; }
form input[type="text"], form input[type="number"], form input[type="password"],
form input[type="file"], form input[type="date"], form select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    background-color: #f9f9f9;
}
input:focus, select:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    outline: none;
}
input.invalid, select.invalid { border-color: red !important; }

/* صفحه قوانین */
.rules-list { list-style: none; margin-bottom: 3rem; }
.rules-list li { display: flex; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.rules-list li:last-child { border-bottom: none; }
.rules-list li .fas { color: var(--primary-color); font-size: 1.2rem; margin-left: 15px; margin-top: 5px; }
.acceptance-area { text-align: center; margin-bottom: 2rem; }
.acceptance-area label { display: inline-flex; align-items: center; cursor: pointer; font-size: 1rem; color: #444; }
#rules-checkbox { display: none; }
.custom-checkbox { display: inline-block; width: 22px; height: 22px; border: 2px solid #ccc; border-radius: 4px; margin-left: 12px; position: relative; transition: all 0.2s ease; }
#rules-checkbox:checked + label .custom-checkbox { background-color: var(--primary-color); border-color: var(--primary-color); }
.custom-checkbox::after { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; color: #fff; font-size: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); transition: transform 0.2s ease; }
#rules-checkbox:checked + label .custom-checkbox::after { transform: translate(-50%, -50%) scale(1); }
#continueBtn:disabled { background-color: #ccc; cursor: not-allowed; }
#continueBtn:disabled:hover { background-color: #ccc; transform: scale(1); }

/* صفحه بررسی کاربر */
.centered-input { text-align: center; font-size: 1.2rem; font-weight: bold; letter-spacing: 3px; padding: 15px; }
.form-error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-radius: 5px; padding: 1rem; margin-bottom: 1.5rem; display: flex; align-items: center; font-size: 0.95rem; }
.form-error .fas { margin-left: 10px; font-size: 1.2rem; }

/* صفحه ثبت نام */
.form-fieldset { border: 1px solid #ddd; border-radius: 8px; padding: 1.5rem; margin-bottom: 2rem; }
.form-fieldset legend { padding: 0 15px; font-size: 1.2rem; font-weight: bold; color: var(--secondary-color); }
.form-fieldset legend .fas { margin-left: 8px; color: var(--primary-color); }
.companion-group { border-top: 1px dashed #ccc; padding-top: 1.5rem; margin-top: 1.5rem; }
.companion-group h5 { font-size: 1.1rem; margin-bottom: 1.5rem; color: #444; }


/* -------------------- 5. پنل مدیریت -------------------- */

.admin-nav { background-color: #e9ecef; padding: 10px; margin-bottom: 20px; border-radius: 5px; display: flex; flex-wrap: wrap; gap: 10px; }
.admin-nav a { text-decoration: none; color: #333; font-weight: bold; padding: 5px 10px; }
.status-pending { background-color: #fff3cd; }
.status-failed { background-color: #f8d7da; }

/* جداول */
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { border: 1px solid #ddd; padding: 12px; text-align: right; }
th { background-color: #f2f2f2; font-weight: bold; }


/* -------------------- 6. واکنش‌گرایی عمومی و جداول -------------------- */
@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.6rem; }
    
    .rules-card, .check-user-card, .registration-form { padding: 1.5rem 1rem; }
    
    /* جادوی جداول ریسپانسیو برای پنل مدیریت */
    table thead { display: none; }
    table, tbody, tr, td { display: block; width: 100%; }
    table tr { margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; padding: 5px; }
    table td { border: none; border-bottom: 1px dotted #ccc; padding-left: 50%; position: relative; text-align: left; min-height: 24px; /* برای جلوگیری از روی هم افتادن */ }
    table td:last-child { border-bottom: none; }
    table td::before {
        content: attr(data-label);
        position: absolute;
        right: 10px;
        left: auto;
        width: 45%;
        padding-left: 10px;
        font-weight: bold;
        text-align: right;
    }
}





























/* ======================================================== */
/* =========== استایل‌های صفحه پروفایل کاربری =========== */
/* ======================================================== */

.status-box {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid;
}
.status-box strong {
    font-size: 1.1rem;
}
.status-box p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.status-completed {
    color: #155724;
    background-color: #d4edda;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
}
.status-failed, .status-pending {
    color: #721c24;
    background-color: #f8d7da;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
}
.status-box.status-completed { border-color: #c3e6cb; }
.status-box.status-failed, .status-box.status-pending { border-color: #f5c6cb; }

/* برای پیام موفقیت در آپدیت */
.form-success {
    background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb;
    border-radius: 5px; padding: 1rem; margin-bottom: 1.5rem;
}

.remove-companion-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 10px;
}
#add-companion-btn {
    background: #28a745;
    color: white;
    margin-top: 1rem;
}
.static-text {
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: bold;
    color: #333;
}

/* استایل برای نمایش متن ثابت تاریخ */
.static-text {
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: bold;
    color: #333;
    cursor: not-allowed; /* نشان می‌دهد که این فیلد قابل ویرایش نیست */
}


#wrapper {
  min-height: 100vh; /* کل ارتفاع صفحه */
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* پر کردن فضای وسط */
}



#check_img{
        width:80%;

}
.form-group-check{
        display: flex;
    align-items: center;
    justify-content: center;
}


#logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #c0a062;
  display:flex;
      align-items: center;


}
#logo img{
  font-size: 1.8rem;
  font-weight: bold;
  color: #c0a062;
    height: 80px;
}

#mainHeader {
  left: 0;
  background-color: #2c3e50;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: top 0.5s ease;
  border-bottom: 4px solid #c0a062;
}



#mainNav {
  display: flex;
  gap: 30px;
}

#mainNav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
}

#mainNav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #c0a062;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

#mainNav a:hover {
  color: #c0a062;
}

#mainNav a:hover::after {
  width: 100%;
}

/* همبرگر منو */
#hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

#hamburger span {
  width: 25px;
  height: 3px;
  background-color: #c0a062;
  border-radius: 2px;
}

/* حالت موبایل */
@media (max-width: 768px) {
  #mainNav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #2c3e50;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index:1000;
  }

  #mainNav.active {
    display: flex;
  }

  #hamburger {
    display: flex;
  }
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
#mainFooter {
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  flex-wrap: wrap;
  border-top: 4px solid #c0a062;
}

#footerRight, #footerLeft {
  flex: 1 1 300px;
}

#footerRight h2 {
  color: #c0a062;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}

#socialLinks a {
  color: #c0a062;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

#socialLinks a:hover {
  color: #fff;
}

#footerLeft h3 {
  color: #c0a062;
  margin-bottom: 10px;
}

#footerLeft p {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #ddd;
}

#footerNav a {
  display: block;
  margin-bottom: 8px;
  color: #c0a062;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

#footerNav a:hover {
  color: #fff;
}


/* موبایل */
@media (max-width: 768px) {
  #mainFooter {
    flex-direction: column;
    padding: 30px 20px;
  }

  #footerRight, #footerLeft {
    flex: unset;
    margin-bottom: 30px;
    text-align: center;
  }

  #socialLinks a {
    margin-right: 10px;
    font-size: 1.1rem;
  }
}




/* ======================================================== */
/* ===========    استایل صفحه تماس با ما    =========== */
/* ======================================================== */

.contact-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-grid {
    display: grid;
    /* در دسکتاپ دو ستون، در موبایل تک ستون می‌شود */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem; /* فاصله زیاد برای زیبایی */
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    border-right: 4px solid var(--primary-color);
    padding-right: 15px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-list i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-left: 20px;
    margin-top: 5px;
    width: 30px; /* برای هم‌تراز شدن متن‌ها */
    text-align: center;
}

.contact-list p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}
.contact-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-list a:hover {
    color: var(--primary-color);
}


.social-title {
    margin-top: 3rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    font-size: 2rem;
    margin: 0 12px;
    color: #444;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1); /* افکت زیبا در هاور */
}

/* استایل نقشه */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* واکنش‌گرایی صفحه تماس */
@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
    .contact-grid {
        gap: 2rem;
    }
    .contact-info h3 {
        font-size: 1.3rem;
    }
    .contact-list li {
        font-size: 1rem;
    }
}







/* ======================================================== */
/* ===========      استایل صفحه گالری      =========== */
/* ======================================================== */

.gallery-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.gallery-grid-fullpage {
    display: grid;
    /* این کد به صورت خودکار تعداد ستون‌ها را بر اساس عرض صفحه تنظیم می‌کند */
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item-fullpage {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-item-fullpage:hover {
    transform: translateY(-8px) scale(1.03); /* افکت شناور شدن در هاور */
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.gallery-item-fullpage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* تصاویر را به بهترین شکل در کادر جا می‌دهد */
}

/* استایل مخصوص آیتم‌های ویدیو */
.gallery-item-fullpage.video-item {
    /* این کد باعث می‌شود ویدیو نسبت ابعاد 16:9 خود را حفظ کند */
    aspect-ratio: 16 / 9;
}

.gallery-item-fullpage.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}










.banner-slider-section {
    width: 100%;
    height: 25vh;
    position: relative; 
        background-color: var(--secondary-color);
        border-bottom: 3px solid var(--primary-color);

}



@media (min-width: 800px) {
 .banner-slider-section {
    height: 40vh;

}
}




.banner-swiper {
    width: 100%;
    height: 100%;
        padding: 0px;
    margin:-1px;
}

.banner-swiper .swiper-slide {
    background-position: center;
                background-size:contain ;
            background-repeat: no-repeat;
                padding: 0px;
    margin:0px;
}


/* ======================================================== */
/* ============= تغییرات اصلی اینجا اعمال شده ============= */
/* ======================================================== */

/* استایل سفارشی برای فلش‌ها (نسخه جدید) */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    /* نکته کلیدی ۱: موقعیت‌دهی مطلق نسبت به کانتینر */
    position: absolute; 
    top: 50%; /* در مرکز عمودی قرار بگیرد */
    transform: translateY(-50%); /* تنظیم دقیق مرکز عمودی */
    
    color: white;
    background-color: rgba(13, 42, 64, 0.5); /* پس‌زمینه نیمه‌شفاف برای دیده شدن روی عکس */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background-color 0.3s;
    
    /* از بین بردن موقعیت‌دهی پیش‌فرض Swiper */
    right: auto;
    left: auto;
    margin-top: 0;
}

/* موقعیت‌دهی فلش سمت چپ */
.banner-swiper .swiper-button-prev {
    left: 20px; /* فاصله از لبه چپ */
}

/* موقعیت‌دهی فلش سمت راست */
.banner-swiper .swiper-button-next {
    right: 20px; /* فاصله از لبه راست */
}


.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    background-color: var(--site-header-blue);
}

.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}


/* استایل نقاط ناوبری تغییری نمی‌کند */
.banner-swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.7);
    width: 10px;
    height: 10px;
    opacity: 1;
}

.banner-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}





.contact-card {
    background-color: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.card-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.card-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.map-container {
    flex: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box, .social-box {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 8px;
}

.info-box h3, .social-box h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    border-right: 3px solid var(--primary-color);
    padding-right: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 15px;
    padding-top: 5px;
}

.info-item p {
    margin: 0;
    color: #444;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Styles for the form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--secondary-color);
}

.form-group input[type="text"],
.form-group textarea {
    width: calc(100% - 22px); /* Adjusted for padding and border */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(192, 160, 98, 0.5);
    outline: none;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    color: #555;
    transition: color 0.3s ease;
}

.radio-group label:hover {
    color: var(--secondary-color);
}

.radio-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-left: 8px;
    position: relative;
    transition: border-color 0.3s ease;
}

.radio-group input[type="radio"]:checked {
    border-color: var(--primary-color);
}

.radio-group input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #a68449;
}

.evaluation-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.evaluation-table th, .evaluation-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: right;
}

.evaluation-table th {
    background-color: var(--secondary-color);
    color: white;
}

.evaluation-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.view-button {
    background-color: var(--primary-color);
}

.return-link {
    margin-top: 20px;
    text-align: center;
}

.answer-text {
    background-color: #f9f9f9;
    padding: 15px;
    border-right: 3px solid var(--primary-color);
    border-radius: 5px;
    margin-right: 25px;
}

.answer-text p {
    margin: 0;
    line-height: 1.5;
    color: #333;
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-right: 5px solid;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
}