/* ===================================
   PHILOSOPHY TITLE STYLING
   ===================================
   Add this to the beginning of the file
*/

/* Philosophy Title */
.philosophy-title {
    /* font-family: 'Orbitron', sans-serif; */
    font-size: 30px;
    color: #FFD700;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    line-height: 1.2;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: auto;
    /* Enhanced glow effect */
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 45px rgba(255, 215, 0, 0.2);
    
    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp1 1s ease-out 0.3s forwards;
}

/* Decorative underline */
.philosophy-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Hover effect */
.philosophy-title:hover {
    transform: translateY(-2px);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4);
    
    transition: all 0.3s ease;
}

.philosophy-title:hover::after {
    width: 120px;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
    transition: all 0.3s ease;
}

/* Animation keyframe */
@keyframes fadeInUp1 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);

    }
}


/* Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .philosophy-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 22px;
    }
    
    .philosophy-title::after {
        width: 110px;
        height: 2px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .philosophy-title {
        font-size: 28px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .philosophy-title::after {
        width: 90px;
        height: 2px;
        bottom: -6px;
    }
    
    /* Reduce glow intensity on tablet */
    .philosophy-title {
        text-shadow: 
            0 0 12px rgba(255, 215, 0, 0.5),
            0 0 25px rgba(255, 215, 0, 0.3),
            0 0 35px rgba(255, 215, 0, 0.1);
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .philosophy-title {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 18px;
    }
    
    .philosophy-title::after {
        width: 70px;
        height: 2px;
        bottom: -5px;
    }
    
    /* Further reduce glow on mobile landscape */
    .philosophy-title {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.4),
            0 0 20px rgba(255, 215, 0, 0.2);
    }
    
    /* Disable hover effects on mobile */
    .philosophy-title:hover {
        transform: none;
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.4),
            0 0 20px rgba(255, 215, 0, 0.2);
    }
    
    .philosophy-title:hover::after {
        width: 70px;
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .philosophy-title {
        font-size: 22px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .philosophy-title::after {
        width: 60px;
        height: 1px;
        bottom: -4px;
    }
    
    /* Minimal glow on small mobile */
    .philosophy-title {
        text-shadow: 
            0 0 8px rgba(255, 215, 0, 0.3),
            0 0 15px rgba(255, 215, 0, 0.1);
    }
    
    /* No hover effects on small mobile */
    .philosophy-title:hover {
        transform: none;
        text-shadow: 
            0 0 8px rgba(255, 215, 0, 0.3),
            0 0 15px rgba(255, 215, 0, 0.1);
    }
}

/* Extra Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .philosophy-title {
        font-size: 18px;
        letter-spacing: 0px;
        margin-bottom: 12px;
        line-height: 1.0;
    }
    
    .philosophy-title::after {
        width: 40px;
        height: 1px;
        bottom: -3px;
    }
    
    /* Very minimal glow on very small screens */
    .philosophy-title {
        text-shadow: 
            0 0 5px rgba(255, 215, 0, 0.2),
            0 0 10px rgba(255, 215, 0, 0.1);
    }
}

/* ===================================
   INTEGRATION WITH DONUT COMPONENT
   ===================================
*/

/* Spacing between title and donut */
.philosophy-title + .donut-container {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .philosophy-title + .donut-container {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .philosophy-title + .donut-container {
        margin-top: 15px;
    }
}

/* Ensure title doesn't interfere with donut positioning */
.donut-infographic .philosophy-title {
    position: relative;
    z-index: 15; /* Higher than donut elements */
    margin-bottom: 0; /* Remove bottom margin inside donut container */
}

/* ===================================
   DONUT INFOGRAPHIC COMPONENT
   ===================================
   Enhanced responsive design for mobile and tablet
*/

.donut-infographic {
    background: transparent;
    padding: 60px 20px;
    display: flex;
    flex-direction: column; /* Stack title above donut */
    justify-content: center;
    align-items: center;
    min-height: auto;
    position: relative;
    margin: 40px 0;
}

.donut-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

/* SVG Ring */
.donut-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.segment {
    transition: all 0.4s ease;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.segment:hover {
    stroke-width: 4;
    fill: rgba(255, 215, 0, 0.2);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

/* Center Circle */
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #121212 0%, #1a1a1a 100%);
    border: 3px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.center-circle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.6),
        inset 0 0 30px rgba(255, 215, 0, 0.15);
}

.center-circle h2 {
    /* font-family: 'Playfair Display', 'Georgia', serif; */
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.dna-highlight {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6);
    font-style: italic;
}

/* Segment Content Positioning */
.segment-content {
    position: absolute;
    width: 240px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 5;
}

.segment-content:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border-color: #FFD700;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 15px 30px rgba(255, 215, 0, 0.2),
        0 0 25px rgba(255, 215, 0, 0.4);
}

/* Desktop positioning */
.segment-1-content {
    top: 0%;
    left: -20%;
}

.segment-2-content {
    top: 0%;
    right: -20%;
    /* right: 80px; */
}

.segment-3-content {
    bottom: -20%;
    left: 50%;
    /* transform: translateX(-50%); */
}

.segment-3-content:hover {
    transform: translateX(-50%) translateY(-8px) scale(1.03);
}

/* Icons */
.segment-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.segment-content:hover .segment-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.segment-icon svg {
    width: 100%;
    height: 100%;
}

/* Typography */
.segment-content h3 {
    /* font-family: 'Orbitron', sans-serif; */
    font-size: 16px;
    color: #FFD700;
    margin: 0 0 12px 0;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    line-height: 1.2;
}

.segment-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #e5e5e5;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Entrance Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUpCenter {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes drawSegment {
    from {
        stroke-dasharray: 0 500;
        opacity: 0;
    }
    to {
        stroke-dasharray: 500 0;
        opacity: 1;
    }
}

/* Apply animations */
.center-circle {
    animation: fadeInScale 1s ease-out 0.5s both;
}

.segment-1-content {
    animation: slideUp 0.8s ease-out 1s both;
}

.segment-2-content {
    animation: slideUp 0.8s ease-out 1.2s both;
}

.segment-3-content {
    animation: slideUpCenter 0.8s ease-out 1.4s both;
}

.segment {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawSegment 1.5s ease-out forwards;
}

.segment-1 {
    animation-delay: 0.2s;
}

.segment-2 {
    animation-delay: 0.4s;
}

.segment-3 {
    animation-delay: 0.6s;
}

/* ===================================
   RESPONSIVE DESIGN
   ===================================
*/

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .donut-container {
        width: 600px;
        height: 600px;
    }
    
    .center-circle {
        width: 240px;
        height: 240px;
        padding: 35px;
    }
    
    .center-circle h2 {
        font-size: 28px;
    }
    
    .segment-content {
        min-height: 250px;
    }
    /*
    .segment-1-content {
        top: 90px;
        left: 90px;
    }
    
    .segment-2-content {
        top: 90px;
        right: 90px;
    }
    
    .segment-3-content {
        bottom: 90px;
    } */
    
    .segment-icon {
        width: 60px;
        height: 60px;
    }
    
    .segment-content h3 {
        font-size: 18px;
    }
    
    .segment-content p {
        font-size: 14px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .donut-infographic {
        padding: 50px 20px;
        margin: 30px 0;
    }
    
    .donut-container {
        width: 480px;
        height: 480px;
    }
    
    .center-circle {
        width: 190px;
        height: 190px;
        padding: 25px;
    }
    
    .center-circle h2 {
        font-size: 22px;
    }
    
    .segment-content {
        width: 240px;
        padding: 18px;
    }
    
    /* .segment-1-content {
        top: 75px;
        left: 75px;
    }
    
    .segment-2-content {
        top: 75px;
        right: 75px;
    }
    
    .segment-3-content {
        bottom: 75px;
    }
     */
    .segment-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .segment-content h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .segment-content p {
        font-size: 12px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .donut-infographic {
        padding: 40px 15px;
        margin: 25px 0;
    }
    
    .donut-container {
        width: 400px;
        height: 400px;
    }
    
    .center-circle {
        width: 160px;
        height: 160px;
        padding: 20px;
    }
    
    .center-circle h2 {
        font-size: 20px;
    }
    
    .segment-content {
        width: 200px;
        padding: 15px;
    }
    
    /* .segment-1-content {
        top: 60px;
        left: 60px;
    }
    
    .segment-2-content {
        top: 60px;
        right: 60px;
    }
    
    .segment-3-content {
        bottom: 60px;
    } */
    
    .segment-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .segment-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .segment-content p {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .donut-infographic {
        padding: 30px 10px;
        margin: 20px 0;
    }
    
    .donut-container {
        width: 350px;
        height: 350px;
    }
    
    .center-circle {
        width: 140px;
        height: 140px;
        padding: 15px;
        border-width: 2px;
    }
    
    .center-circle h2 {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .segment-content {
        width: 180px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .segment-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }
    
    .segment-content h3 {
        font-size: 12px;
        margin-bottom: 6px;
        line-height: 1.1;
    }
    
    .segment-content p {
        font-size: 10px;
        line-height: 1.2;
    }
    
    /* Disable hover effects on mobile */
    .segment-content:hover {
        transform: none;
        box-shadow: none;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
        border-color: rgba(255, 215, 0, 0.4);
    }
    
    .segment:hover {
        stroke-width: 2;
        fill: rgba(255, 215, 0, 0.1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .donut-infographic {
        padding: 20px 5px;
        margin: 15px 0;
    }
    
    .donut-container {
        width: 280px;
        height: 280px;
    }
    
    .center-circle {
        width: 110px;
        height: 110px;
        padding: 12px;
        border-width: 2px;
    }
    
    .center-circle h2 {
        font-size: 14px;
        line-height: 1.1;
    }
    
    .segment-content {
        width: 120px;
        padding: 10px;
        border-radius: 10px;
        border-width: 1px;
    }
    
    /* .segment-1-content {
        top: 35px;
        left: 35px;
    }
    
    .segment-2-content {
        top: 35px;
        right: 35px;
    }
    
    .segment-3-content {
        bottom: 35px;
    } */
    
    .segment-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }
    
    .segment-content h3 {
        font-size: 10px;
        margin-bottom: 4px;
        line-height: 1.0;
    }
    
    .segment-content p {
        font-size: 8px;
        line-height: 1.1;
    }
    
    /* Simplified animations for mobile */
    .center-circle {
        animation: fadeInScale 0.6s ease-out 0.3s both;
    }
    
    .segment-1-content,
    .segment-2-content {
        animation: slideUp 0.6s ease-out 0.6s both;
    }
    
    .segment-3-content {
        animation: slideUpCenter 0.6s ease-out 0.8s both;
    }
    
    .segment {
        animation: drawSegment 1s ease-out forwards;
    }
}

/* Extra Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .donut-infographic {
        padding: 15px 3px;
    }
    
    .donut-container {
        width: 240px;
        height: 240px;
    }
    
    .center-circle {
        width: 90px;
        height: 90px;
        padding: 8px;
    }
    
    .center-circle h2 {
        font-size: 11px;
    }
    
    
    /* .segment-3-content {
        bottom: 25px;
    } */
    .segment-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 4px;
    }
    
    .segment-content h3 {
        font-size: 8px;
        margin-bottom: 3px;
    }
    
    .segment-content p {
        font-size: 7px;
        line-height: 1.0;
    }
}

/* Background glow effect - Responsive */
.donut-infographic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 767px) {
    .donut-infographic::before {
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    }
}

@media (max-width: 575px) {
    .donut-infographic::before {
        width: 250px;
        height: 250px;
    }
}

/* Integration with About section - Responsive */
.about .donut-infographic {
    margin-top: 20px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .about .donut-infographic {
        margin-top: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .about .donut-infographic {
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

/* Ensure proper spacing with tabs - Responsive */
.about .tabs {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .about .tabs {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .about .tabs {
        margin-top: 20px;
    }
}

/* Logo spacing fix - Responsive */
.about .logo-large {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .about .logo-large {
        margin-bottom: 20px;
        max-width: 80%;
    }
}

@media (max-width: 575px) {
    .about .logo-large {
        margin-bottom: 15px;
        max-width: 90%;
    }
}

/* Touch-friendly interactions for mobile */
@media (max-width: 767px) {
    .segment-content {
        touch-action: manipulation;
    }
    
    .center-circle {
        touch-action: manipulation;
    }
    
    /* Larger touch targets */
    .segment-content::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -20px;
        right: -20px;
        bottom: -10px;
        z-index: -1;
    }
}

/* ===================================
   PHILOSOPHY STATEMENT STYLING
   ===================================
*/

.philosophy-statement {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 1rem auto;
    max-width: 1050px;
    line-height: 1.5;
    padding: 15px 25px;
    position: relative;
    /* background: rgba(255, 255, 255, 0.05); */
    /* border: 2px solid rgba(255, 215, 0, 0.3); */
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.philosophy-statement:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.philosophy-statement:first-of-type {
    margin-top: 1.5rem;
    font-style: italic;
}

.philosophy-statement:last-of-type {
    margin-bottom: 3rem;
}

.philosophy-statement::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -1px;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    /* background: linear-gradient(90deg, transparent, #FFD700, transparent); */
    opacity: 0.8;
}

.philosophy-statement::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    opacity: 0.8;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .philosophy-statement {
        font-size: 0.9rem;
        padding: 12px 20px;
        margin: 0.8rem auto;
        max-width: 90%;
    }
    
    .philosophy-statement:first-of-type {
        margin-top: 1rem;
    }
    
    .philosophy-statement:last-of-type {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .philosophy-statement {
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 10px 15px;
        border-radius: 8px;
    }
    
    .philosophy-statement::before,
    .philosophy-statement::after {
        width: 60px;
    }
}

/* ===================================
   PHILOSOPHY STATEMENT GROUP STYLING
   ===================================
*/

.philosophy-statement-group {
    background: rgba(30, 30, 30, 0.7);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    padding: 28px 18px 18px 18px;
    margin: 1.5rem auto 2.5rem auto;
    max-width: 900px;
    box-shadow: 
        0 6px 32px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.philosophy-statement-group:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.philosophy-statement-group .philosophy-statement {
    margin: 0;
    max-width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 8px 15px;
    font-size: 0.95rem;
}

.philosophy-statement-group .philosophy-statement:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.philosophy-statement-group .philosophy-statement::before,
.philosophy-statement-group .philosophy-statement::after {
    display: none;
}

/* Mobile responsiveness for group */
@media (max-width: 768px) {
    .philosophy-statement-group {
        max-width: 95%;
        padding: 20px 15px 15px 15px;
        border-radius: 15px;
        gap: 8px;
    }
    
    .philosophy-statement-group .philosophy-statement {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .philosophy-statement-group {
        padding: 15px 10px 10px 10px;
        border-radius: 12px;
        gap: 6px;
    }
    
    .philosophy-statement-group .philosophy-statement {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}