.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .page-section {
            padding: 3rem 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #d4af37;
            border-radius: 2px;
        }
        
        .text-center {
            text-align: center;
            font-size: 1.2rem;
            color: #d4af37;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Contact Container */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin: 3rem 0;
        }
        
        /* Contact Info */
        .contact-info h3 {
            font-size: 1.8rem;
            color: #d4af37;
            margin-bottom: 2rem;
        }
        
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            
        }
        
        .contact-detail i {
            font-size: 1.5rem;
            color: #d4af37;
            margin-right: 1rem;
            margin-top: 0.3rem;
            min-width: 30px;
        }
        
        .contact-detail h4 {
            font-size: 1.2rem;
            color: #d4af37;
            margin-bottom: 0.5rem;
        }
        
        .contact-detail p {
            color: #d4af37;
            margin-bottom: 0.5rem;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: #d4af37;
            color: white;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn:hover {
            background: #9c27b0;
            transform: translateY(-2px);
        }
        
        .btn-accent {
            background: #d4af37;
        }
        
        .btn-accent:hover {
            background: #c19d30;
        }
        
        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #ddd;
            border-radius: 50%;
            color: #d4af37;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #d4af37;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Contact Form */
        .contact-form {
            background: #FFF9FC;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h3 {
            font-size: 1.8rem;
            color: #d4af37;
            margin-bottom: 2rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #d4af37;
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
  /* FAQ Section */
.faq {
  margin-top: 4rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #292F36; /* kept your color */
}

.faq-question i {
  transition: transform 0.3s ease;
}

/* Rotate icon when active */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Answer box closed by default */
.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Open state */
.faq-item.active .faq-answer {
  max-height: 500px; /* adjust height if needed */
  padding: 1.5rem;
}

.faq-answer p {
  color: #c19d30; /* kept your color */
  line-height: 1.6;
}


        /* Hero Image */
        .page-section img {
            width: 100%;
            height: 650px;
            object-fit: cover;
            border-radius: 50px;
            margin-bottom: 2rem;
            padding: 20px;
            
        }
     /* Responsive Design */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .page-section img {
                height: 500px;
                border-radius: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .page-section {
                padding: 2rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .text-center {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .contact-info h3, .contact-form h3 {
                font-size: 1.6rem;
            }
            
            .contact-form {
                padding: 1.5rem;
            }
            
            .faq-question {
                padding: 1.2rem;
                font-size: 1rem;
            }
            
            .page-section img {
                height: 400px;
                border-radius: 20px;
                padding: 15px;
            }
            
            .btn {
                padding: 0.7rem 1.3rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .text-center {
                font-size: 1rem;
            }
            
            .contact-info h3, .contact-form h3 {
                font-size: 1.4rem;
            }
            
            .contact-detail {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .contact-detail i {
                margin-bottom: 0.5rem;
            }
            
            .contact-form {
                padding: 1.2rem;
            }
            
            .form-group {
                margin-bottom: 1.2rem;
            }
            
            .faq-question {
                padding: 1rem;
                font-size: 0.95rem;
            }
            
            .faq-item.active .faq-answer, 
            .faq-answer p {
                padding: 1rem;
            }
            
            .page-section img {
                height: 300px;
                border-radius: 15px;
                padding: 10px;
            }
            
            .social-icons {
                justify-content: center;
            }
        }
        
        @media (max-width: 400px) {
            .section-title {
                font-size: 1.6rem;
            }
            
            .contact-info h3, .contact-form h3 {
                font-size: 1.3rem;
            }
            
            .page-section img {
                height: 250px;
            }
            
            .btn {
                width: 100%;
                padding: 0.8rem;
            }
        }