/* Import Inter Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* Root Variables */
:root {
    --color-primary-text: #1D1D1D;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --font-primary: 'Inter', -apple-system, Roboto, Helvetica, sans-serif;
}

/* General Page Styles */
.prajaktaabout-page {
    background: var(--color-white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Container */
.prajaktaabout-container {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* Hero Image Section */
.prajaktaabout-hero-section {
    margin: 3rem 0 4rem;
}

.prajakta-hero-image {
    width: 100%;
    max-width: 1120px;
    height: auto;
    aspect-ratio: 112 / 57;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Content Section */
.prajaktaabout-content-section {
    margin-top: 4rem;
}

/* About Description */
.about-description {
    max-width: 550px;
    width: 100%;
}

.about-description p {
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .prajaktaabout-container {
        max-width: 1320px;
    }

    .about-description p {
        font-size: 1.5rem;
    }
}

/* Desktop (992px to 1399px) */
@media (max-width: 1399px) {
    .about-description p {
        font-size: 1.375rem;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .prajaktaabout-container {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }

    .prajaktaabout-hero-section {
        margin: 2rem 0 3rem;
    }

    .prajaktaabout-content-section {
        margin-top: 3rem;
    }

    .about-description {
        max-width: 100%;
    }

    .about-description p {
        font-size: 1.25rem;
        line-height: 1.6;
    }
}

/* Mobile (576px to 767px) */
@media (max-width: 767px) {
    .prajaktaabout-container {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .prajaktaabout-hero-section {
        margin: 1.5rem 0 2.5rem;
    }

    .prajaktaabout-content-section {
        margin-top: 2.5rem;
    }

    .about-description p {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
}

/* Extra Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .prajaktaabout-container {
        padding-top: 0.75rem;
        padding-bottom: 1.5rem;
    }

    .prajaktaabout-hero-section {
        margin: 1rem 0 2rem;
    }

    .prajaktaabout-content-section {
        margin-top: 2rem;
    }

    .about-description p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

/* Extra Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .about-description p {
        font-size: 0.95rem;
    }
}
