/* Common Page Template Styles */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    margin-bottom: 60px;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 49%, white 50%);
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.page-section {
    padding: 60px 0;
}

.page-section h2 {
    color: #bc8220;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.page-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #bc8220;
}

.page-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.page-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-card p:last-child {
    margin-bottom: 0;
}

.page-quote {
    background-color: #f8f9fa;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-quote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 200px;
    color: rgba(188, 130, 32, 0.1);
    font-family: Georgia, serif;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-content h2 {
    color: #bc8220;
    font-weight: 700;
    margin-bottom: 20px;
}

.quote-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.feature-item {
    text-align: center;
    margin-bottom: 40px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(188, 130, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: #bc8220;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-header {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-header i {
    color: #bc8220;
    transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.7;
}

/* Contact Form Styles */
.contact-form {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    height: auto;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: #bc8220;
    box-shadow: 0 0 0 0.2rem rgba(188, 130, 32, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-form .btn-submit {
    background-color: #bc8220;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: #a06c1b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(188, 130, 32, 0.3);
}

.contact-info {
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(188, 130, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 20px;
    color: #bc8220;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-info-content p {
    color: #666;
    margin: 0;
}

/* Terms and Policy Styles */
.terms-section h3 {
    color: #333;
    font-weight: 600;
    margin: 30px 0 15px;
}

.terms-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 10px;
}

/* How It Works Styles */
.step-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #bc8220;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: rgba(188, 130, 32, 0.2);
    z-index: 1;
}
