.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 40px;
    background: linear-gradient(90deg, #fff, #1fa5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    text-shadow: 0 0 20px rgba(31, 165, 253, 0.2);
}

.page-description {
    font-size: 1.4rem;
    color: #8b9bb4;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    margin-top: 20px;
    background: rgba(31, 165, 253, 0.08);
    border-radius: 16px;
    border-left: 3px solid #1fa5fd;
}

.page-description::before {
    content: '\f518';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 15px;
    background: linear-gradient(135deg, #1fa5fd, #0dcaf0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-description::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    margin-left: 15px;
    color: #1fa5fd;
}

.page-description:hover {
    background: rgba(31, 165, 253, 0.12);
    box-shadow: 0 5px 15px rgba(31, 165, 253, 0.1);
}

.story-section {
    padding: 80px 0;
    background: linear-gradient(145deg, rgba(9, 16, 26, 0.97) 0%, rgba(9, 16, 72, 0.97) 100%);
    border-radius: 32px;
    margin: 40px 0;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.story-quote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    color: #c1d1e9;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}

.story-quote::before,
.story-quote::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    color: rgba(31, 165, 253, 0.2);
    line-height: 1;
}

.story-quote::before {
    left: 0;
    top: -20px;
}

.story-quote::after {
    right: 0;
    bottom: -40px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.story-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(31, 165, 253, 0.2) 0%, rgba(13, 202, 240, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-paragraph p {
    color: #8b9bb4;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-highlight {
    background: rgba(31, 165, 253, 0.1);
    border-radius: 16px;
    padding: 25px;
    border-left: 4px solid #1fa5fd;
}

.story-highlight p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.story-resolution {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(13, 202, 240, 0.1);
    padding: 25px;
    border-radius: 16px;
}

.resolution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1fa5fd, #0dcaf0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resolution-icon i {
    font-size: 24px;
    color: #fff;
}

.story-resolution p {
    color: #c1d1e9;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.story-emotion {
    text-align: right;
    font-style: italic;
    color: #1fa5fd;
    font-size: 1.2rem;
}

.story-takeaways {
    margin-top: 60px;
    padding: 40px;
    background: rgba(31, 165, 253, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(31, 165, 253, 0.1);
}

.takeaways-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #fff, #1fa5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.takeaways-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.takeaway-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(31, 165, 253, 0.08);
    border-radius: 16px;
    flex: 1;
    min-width: 300px;
}

.takeaway-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1fa5fd, #0dcaf0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.takeaway-icon i {
    font-size: 20px;
    color: #fff;
}

.takeaway-item p {
    color: #c1d1e9;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.5;
}

.story-btn {
    margin: 50px auto;
    text-align: center;
}

@media (max-width: 1024px) {
    .takeaways-list {
        gap: 15px;
    }
    
    .takeaway-item {
        min-width: 280px;
        padding: 18px;
    }
    
    .takeaway-item p {
        font-size: 1.15rem;
    }
}

@media (max-width: 991px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-quote {
        font-size: 1.3rem;
        padding: 0 30px;
    }
    
    .takeaways-list {
        gap: 15px;
    }
    
    .takeaway-item {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-description {
        font-size: 1.2rem;
        padding: 12px 20px;
    }

    .story-section {
        padding: 40px 0;
    }

    .story-header {
        margin-bottom: 40px;
    }

    .story-quote {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .story-text {
        gap: 20px;
    }

    .story-takeaways {
        margin-top: 40px;
        padding: 20px;
    }

    .takeaways-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .takeaways-list {
        flex-direction: column;
        gap: 15px;
    }

    .takeaway-item {
        padding: 15px;
        min-width: unset;
        flex: none;
    }

    .takeaway-item p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
        margin: 30px 0;
    }
    
    .page-description {
        font-size: 1.1rem;
        padding: 10px 15px;
    }
    
    .story-takeaways {
        margin-top: 30px;
        padding: 15px;
    }
    
    .takeaways-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .takeaways-list {
        gap: 12px;
    }
    
    .takeaway-item {
        padding: 12px;
        gap: 15px;
        align-items: flex-start;
    }
    
    .takeaway-icon {
        width: 40px;
        height: 40px;
        margin-top: 2px;
    }
    
    .takeaway-icon i {
        font-size: 18px;
    }
    
    .takeaway-item p {
        font-size: 1rem;
        line-height: 1.4;
    }
}