.testimonials {
    background: var(--white);
}

.testimonials-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-placeholder {
    text-align: center;
    padding: 64px 32px;
    background: var(--light-gray);
    border-radius: 16px;
    border: 2px dashed var(--secondary-color);
}

.testimonial-placeholder p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.testimonial-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-light);
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: var(--text-dark);
}

.cta-link {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-form {
    max-width: 600px;
    margin: 48px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-button {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.contact-alternative {
    margin-top: 48px;
    text-align: center;
}

.page-header {
    padding: 120px 24px 48px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6BC4B5 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.faq-section {
    background: var(--white);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.category-button {
    padding: 12px 32px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-button.active,
.category-button:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 48px;
}

.faq-category-title {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-item.active {
    border-color: var(--secondary-color);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-loading,
.no-results,
.error-message {
    text-align: center;
    padding: 48px;
    color: var(--text-light);
}

.legal-content {
    background: var(--white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-text h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-text p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6BC4B5 100%);
    padding: 24px;
}

.admin-login-card {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 100%;
}

.admin-logo {
    height: 60px;
    margin: 0 auto 32px;
    display: block;
}

.admin-login-card h1 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.admin-form {
    width: 100%;
}

.admin-button {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-button:hover:not(:disabled) {
    background: #6BC4B5;
    transform: translateY(-2px);
}

.admin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.admin-button.secondary {
    background: #6C757D;
}

.admin-button.secondary:hover {
    background: #5A6268;
}

.admin-note {
    text-align: center;
    margin-top: 24px;
}

.admin-note a {
    color: var(--secondary-color);
    text-decoration: none;
}

.admin-note a:hover {
    text-decoration: underline;
}

.admin-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--text-dark);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.admin-sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-logo {
    height: 40px;
    margin-bottom: 16px;
}

.admin-sidebar-header h2 {
    color: var(--primary-color);
}

.admin-nav {
    flex: 1;
    padding: 24px 0;
}

.admin-nav-item {
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.admin-nav-item.active {
    background: rgba(244, 232, 124, 0.1);
    border-left: 4px solid var(--primary-color);
    color: var(--primary-color);
}

.badge {
    background: #DC3545;
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.admin-sidebar-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logout-button {
    width: 100%;
    padding: 12px;
    background: #DC3545;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-logout-button:hover {
    background: #C82333;
}

.admin-main {
    background: var(--light-gray);
    padding: 24px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #E0E0E0;
}

.admin-header h1 {
    color: var(--text-dark);
}

.admin-user-info {
    color: var(--text-light);
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.status-filters {
    display: flex;
    gap: 12px;
}

.filter-button {
    padding: 8px 20px;
    border: 2px solid #E0E0E0;
    background: var(--white);
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button.active,
.filter-button:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: var(--white);
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid transparent;
}

.message-card.new {
    border-left-color: #28A745;
}

.message-card.read {
    border-left-color: #007BFF;
}

.message-card.archived {
    border-left-color: #6C757D;
    opacity: 0.7;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.message-header h3 {
    color: var(--text-dark);
    margin-bottom: 4px;
}

.message-email {
    color: var(--text-light);
    font-size: 14px;
}

.message-meta {
    text-align: right;
}

.message-date {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.message-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.message-status-badge.new {
    background: #D4EDDA;
    color: #155724;
}

.message-status-badge.read {
    background: #D1ECF1;
    color: #0C5460;
}

.message-status-badge.archived {
    background: #E2E3E5;
    color: #383D41;
}

.message-subject {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.message-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.message-actions {
    display: flex;
    gap: 12px;
}

.action-button {
    padding: 8px 16px;
    border: 1px solid #E0E0E0;
    background: var(--white);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: var(--light-gray);
}

.action-button.secondary {
    color: #6C757D;
}

.action-button.danger {
    color: #DC3545;
    border-color: #DC3545;
}

.action-button.danger:hover {
    background: #DC3545;
    color: var(--white);
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-list-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.list-item-content h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
}

.list-item-content p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.quote-preview {
    font-style: italic;
}

.category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.published {
    background: #D4EDDA;
    color: #155724;
}

.status-badge.draft {
    background: #FFF3CD;
    color: #856404;
}

.list-item-actions {
    display: flex;
    gap: 8px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-actions button {
    flex: 1;
}

.settings-group {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid #E0E0E0;
}

.settings-group:last-of-type {
    border-bottom: none;
}

.settings-group h3 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

input[type="color"] {
    height: 48px;
    cursor: pointer;
}

.loading {
    text-align: center;
    padding: 48px;
    color: var(--text-light);
}

.nav-links a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .admin-container {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 24px;
    }

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

    .faq-categories {
        flex-direction: column;
    }

    .category-button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
