/* Page-specific styles */
.page-main {
    min-height: calc(100vh - 140px);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 3px solid #4f46e5;
    display: inline-block;
    width: 100%;
}

.page-section {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #e5e7eb;
}

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

.page-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff6b9d;
    display: inline-block;
}

.page-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.content-placeholder {
    background-color: #f9fafb;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #d1d5db;
}

.content-placeholder p {
    font-size: 18px;
    color: #6b7280;
    font-style: italic;
}

/* About page specific styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.about-content-single {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.about-text h2 {
    border-bottom: none;
    margin-bottom: 16px;
    display: block;
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.about-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    min-height: 150px;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-main {
        padding: 40px 0;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .page-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

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

    .content-placeholder {
        padding: 40px 20px;
    }

    .about-content,
    .about-content-single {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }

    .page-section h2 {
        font-size: 18px;
    }

    .content-placeholder p {
        font-size: 16px;
    }

    .about-image img {
        height: 180px;
    }

    .about-illustration {
        padding: 15px;
        min-height: 120px;
    }

    .about-illustration svg {
        width: 150px;
        height: 100px;
    }
}