﻿/* Internal Pages Styles */
/* ========================================================================== */

/* Page Header Section */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.page-header-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 20px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    text-align: center;
    max-width: 500px;
}

.thank-you-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 30px;
    display: inline-block;
}

.thank-you-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thank-you-message {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thank-you-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.thank-you-button {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 12px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thank-you-button:hover {
    background-color: #0052a3;
}

/* Page Content Section */
.page-content {
    padding: 60px 20px;
    background-color: white;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-container h2:first-child {
    margin-top: 0;
}

.content-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-container a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.content-container a:hover {
    text-decoration: underline;
}

.content-container ul {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    padding-left: 25px;
    margin-bottom: 20px;
}

.content-container ul li {
    margin-bottom: 12px;
}

.content-container strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    background-color: #0066cc;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #0052a3;
}

/* Policy Pages Styles */
.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: white;
}

.policy-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.3;
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.policy-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    padding-left: 25px;
    margin: 15px 0 20px 0;
}

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

.policy-section strong {
    color: #1a1a1a;
    font-weight: 700;
}

.policy-section a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 15px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .page-content {
        padding: 40px 15px;
    }

    .content-container h2 {
        font-size: 22px;
    }

    .content-container h3 {
        font-size: 18px;
    }

    .content-container p,
    .content-container ul {
        font-size: 15px;
    }

    .policy-content {
        padding: 40px 15px;
    }

    .policy-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .policy-section h3 {
        font-size: 18px;
    }

    .policy-section p,
    .policy-section ul {
        font-size: 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .thank-you-section {
        padding: 60px 15px;
        min-height: calc(100vh - 150px);
    }

    .thank-you-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .thank-you-title {
        font-size: 28px;
    }

    .thank-you-message {
        font-size: 16px;
    }

    .thank-you-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 15px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .content-container h2 {
        font-size: 20px;
    }

    .content-container h3 {
        font-size: 16px;
    }

    .policy-content {
        padding: 30px 15px;
    }

    .policy-content h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .policy-section h3 {
        font-size: 16px;
    }

    .thank-you-icon {
        font-size: 50px;
    }

    .thank-you-title {
        font-size: 22px;
    }

    .thank-you-message {
        font-size: 15px;
    }

    .thank-you-description {
        font-size: 13px;
    }
}

