/* About Page Styles - White Background Layout */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
    font-family: 'Bebas Neue', cursive;
    background-color: white;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.about-main * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-main {
    min-height: 20vh;
    padding-top: 80px; /* Space for header */
    padding-bottom: 40px; /* Equal bottom space */
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 170px);
    padding: 2rem;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    width: 100%;
    gap: 4rem;
}

/* Logo Section */
.logo-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 0;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 550px;
    height: 550px;
}

.logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
}

/* Content Section */
.content-section {
    flex: 1;
    max-width: 700px;
}

.text-content {
    background: transparent;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.text-content p {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-align: justify;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.text-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-container {
        gap: 3rem;
    }
    
    .logo-section {
        width: 480px;
        height: 480px;
    }
    
    .text-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .logo-section {
        order: 1;
        width: 420px;
        height: 420px;
    }
    
    .content-section {
        order: 2;
        max-width: 100%;
    }
    
    .text-content {
        padding: 2rem;
    }
    
    .text-content p {
        text-align: left;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .about-container {
        gap: 2rem;
    }
    
    .logo-section {
        width: 360px;
        height: 360px;
        border-radius: 20px;
    }
    
    .text-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .text-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-main {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .about-content {
        padding: 0.5rem;
    }
    
    .logo-section {
        width: 280px;
        height: 280px;
        border-radius: 15px;
    }
    
    .text-content {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .text-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        letter-spacing: 0.3px;
    }
}
