/* Auxiliary Pages Styles */

.main-content {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: calc(100vh - 160px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff1493, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    grid-template-columns: 2fr 1fr 1fr;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
    color: #ffffff;
    border-left: 4px solid #ff1493;
    padding-left: 20px;
}

.content-section p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.content-image {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.placeholder-content {
    background: rgba(255, 20, 147, 0.1);
    border: 2px dashed rgba(255, 20, 147, 0.3);

/* Content with images and SVG */
.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-with-image:nth-child(even) {
    grid-template-columns: 1fr 2fr;
}

.content-with-image:nth-child(even) .content-image {
    order: -1;
}

.content-with-svg {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-with-svg:nth-child(odd) {
    grid-template-columns: 1fr 2fr;
}

.content-with-svg:nth-child(odd) .content-svg {
    order: -1;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image .placeholder-image {
    background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
    border: 2px dashed #555;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: #888;
    font-style: italic;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-svg {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-with-image:nth-child(even),
    .content-with-svg:nth-child(odd) {
        grid-template-columns: 1fr;
    }
    
    .content-with-image:nth-child(even) .content-image,
    .content-with-svg:nth-child(odd) .content-svg {
        order: 0;
    }
}
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: #ff1493;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding-top: 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 20px 15px;
    }
    
    .placeholder-content {
        padding: 30px 20px;
    }
}