/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Project Detail Hero Section */
.project-detail-hero {
    position: relative;
    width: 1872px;
    max-width: calc(100% - 48px);
    height: 450px;
    margin: 13px auto 24px auto;
    background: url('../images/urundetay.png') center/cover no-repeat;
    border-radius: 48px;
    overflow: hidden;
    flex-shrink: 0;
}

.project-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(32, 39, 79, 0.8) 50%,
            rgba(32, 39, 79, 0.3) 40%,
            rgba(32, 39, 79, 0.2) 30%,
            rgba(32, 39, 79, 0.3) 40%,
            rgba(32, 39, 79, 0.8) 50%);
    z-index: 1;
}

/* Hero Content */
.project-detail-hero-content {
    position: absolute;
    bottom: 140px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}

.project-detail-hero-title {
    color: #FFF;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 30px;
}

/* Breadcrumb and Share */
.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.breadcrumb {
    display: flex;
    height: 30px;
    padding: 6px 12px;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.breadcrumb-item:hover {
    color: #ed3237;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.breadcrumb-current {
    color: white;
    font-size: 14px;
}

.share-wrapper {
    display: flex;
    height: 30px;
    padding: 6px 12px;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
}

.share-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #ed3237;
}

/* Project Detail Section */
.project-detail-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg,
            #fafafa 0%,
            #f5f7fa 25%,
            #f8fafc 50%,
            #f1f5f9 75%,
            #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.project-detail-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(45, 58, 140, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(237, 50, 55, 0.02) 0%, transparent 40%);
    animation: floating-bg 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes floating-bg {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-20px, -10px) rotate(1deg);
    }

    66% {
        transform: translate(10px, -20px) rotate(-1deg);
    }
}

.project-detail-container {
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Project Main Area */
.project-main-area {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

/* Project Gallery */
.project-gallery {
    width: 660px;
    height: 400px;
    flex-shrink: 0;
    position: relative;
    background:
        linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 20px 40px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gallery-float 6s ease-in-out infinite;
}

@keyframes gallery-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.project-gallery:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.gallery-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.main-image.active {
    opacity: 1;
}

/* Gallery Navigation */
.gallery-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-nav {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 24px;
    border: 1px solid #6B7280;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s;
    color: #6B7280;
}

.gallery-nav:hover {
    background: #302F81;
    color: white;
    border-color: #302F81;
}

.image-counter {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Project Info */
.project-info {
    flex: 1;
    animation: slide-in-right 1s ease-out 0.3s both;
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.project-title {
    font-family: 'Sora', sans-serif;
    font-size: 49px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    color: var(--Koyu-Metin-Rengi, #2D2D3A);
    margin-bottom: 40px;
    text-align: left;
    align-self: stretch;
    animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% {
        text-shadow: 0 0 5px rgba(45, 58, 140, 0.1);
    }

    100% {
        text-shadow:
            0 0 10px rgba(45, 58, 140, 0.2),
            0 0 20px rgba(45, 58, 140, 0.1);
    }
}

/* Project Description Text */
.project-description-text {
    background: transparent;
    padding: 0;
}

.project-description-text h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--Hafif-Metin-Rengi, #6B7280);
    margin-bottom: 15px;
    text-align: left;
    align-self: stretch;
}

.project-description-text p {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.15px;
    color: #758289;
    margin: 0;
    text-align: left;
}

/* Project Full Description */
.project-full-description {
    max-width: 100%;
    padding: 60px 0;
    background: transparent;
    margin-bottom: 60px;
}

.description-section {
    margin-bottom: 40px;
}

.description-section:last-child {
    margin-bottom: 0;
}

.description-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #444;
    margin-bottom: 20px;
}

.description-section ul {
    list-style: none;
    padding: 0;
}

.description-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.15px;
    color: #758289;
}

.description-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #302F81;
    font-weight: bold;
    font-size: 20px;
}

/* Project Photos */
.project-photos {
    margin-bottom: 60px;
}

.project-photos h2 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #444;
    margin-bottom: 30px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-item {
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    animation: fade-in-up 0.6s ease-out forwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* Project Documents */
.project-documents {
    margin-bottom: 60px;
}

.project-documents h2 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #444;
    margin-bottom: 30px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.document-item {
    width: 380px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.document-item:hover {
    background: #e8f4f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.document-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #302F81;
    border-radius: 10px;
    color: white;
}

.document-info h4 {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #2D2D3A;
    margin-bottom: 5px;
}

.document-info span {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: #6B7280;
}

/* Footer */
.footer-section {
    background: linear-gradient(270deg, #20274F 0%, #302F81 100%);
    border-radius: 30px 30px 0 0;
    padding: 80px 0 30px;
    color: white;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .documents-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .document-item {
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 1200px) {
    .project-detail-hero {
        height: 400px;
    }

    .project-detail-hero-title {
        font-size: 40px;
    }

    .project-main-area {
        flex-direction: column;
        gap: 40px;
    }

    .project-gallery {
        width: 100%;
        max-width: 660px;
        margin: 0 auto;
    }

    .project-info {
        max-width: 660px;
        margin: 0 auto;
    }

    .project-full-description {
        padding: 40px 0;
    }

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .project-detail-hero {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .project-detail-hero {
        height: 350px;
        width: calc(100% - 30px);
    }

    .project-detail-hero-title {
        font-size: 32px;
    }

    .breadcrumb-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .project-detail-section {
        padding: 40px 0 60px;
    }

    .project-detail-container {
        padding: 0 20px;
    }

    .project-gallery {
        height: 300px;
        border-radius: 20px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .project-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .project-description-text h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .project-description-text p {
        font-size: 14px;
    }

    .project-full-description {
        padding: 30px 0;
    }

    .description-section h2 {
        font-size: 20px;
    }

    .description-section li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .photos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .document-item {
        width: 100%;
        height: 80px;
        padding: 15px;
    }

    .document-icon {
        width: 35px;
        height: 35px;
    }

    .document-info h4 {
        font-size: 14px;
    }

    .document-info span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .project-detail-hero {
        height: 300px;
        margin-top: 70px;
        border-radius: 30px;
    }

    .project-detail-hero-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .breadcrumb,
    .share-wrapper {
        padding: 4px 10px;
        font-size: 12px;
    }

    .project-detail-section {
        padding: 30px 0 40px;
    }

    .project-detail-container {
        padding: 0 15px;
    }

    .project-gallery {
        height: 250px;
    }

    .gallery-navigation {
        bottom: 15px;
        gap: 15px;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .image-counter {
        font-size: 12px;
        padding: 6px 12px;
    }

    .project-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .project-full-description {
        padding: 20px 0;
    }

    .description-section h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .description-section li {
        padding-left: 20px;
        font-size: 13px;
    }

    .document-item {
        height: 70px;
        padding: 12px;
        gap: 12px;
    }

    .document-icon {
        width: 30px;
        height: 30px;
    }

    .document-info h4 {
        font-size: 13px;
    }

    .document-info span {
        font-size: 11px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}


.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    border-radius: 50%;
}

.lightbox-close:hover {
    background: #333;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
}

.photo-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(45, 58, 140, 0.08);
    border-color: rgba(45, 58, 140, 0.2);
}


/* Mobile Lightbox Styles */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 20px;
    }

    .lightbox-close {
        top: 5px;
        right: 5px;
        font-size: 25px;
        width: 35px;
        height: 35px;
        background: black;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Photo Modal */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.photo-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-container {
    position: relative;
    display: inline-block;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: black;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .photo-modal-content {
        margin: 10px;
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }

    .modal-image {
        max-height: 70vh;
    }

    .close-btn {
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* Modal Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.modal-nav-btn:hover {
    background: rgba(237, 50, 55, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn.prev-btn {
    left: 20px;
}

.modal-nav-btn.next-btn {
    right: 20px;
}

.modal-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Modal Counter */
.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1001;
}

/* Responsive adjustments for modal navigation */
@media (max-width: 768px) {
    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }

    .modal-nav-btn.prev-btn {
        left: 10px;
    }

    .modal-nav-btn.next-btn {
        right: 10px;
    }

    .modal-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .modal-counter {
        bottom: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Description Sections - Project Content Boxes */
.description-section {
    position: relative;
    margin-bottom: 40px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 30px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(45, 58, 140, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(237, 50, 55, 0.03) 0%, transparent 50%);
    border-radius: 25px;
    z-index: 1;
}

.description-section:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.description-section:last-child {
    margin-bottom: 0;
}

.description-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: linear-gradient(135deg, #2d3a8c, #ed3237);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.description-section ul {
    list-style: none;
    padding: 0;
}

.description-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.15px;
    color: #4A5568;
    z-index: 2;
}

.description-section div,
.description-section p {
    position: relative;
    z-index: 2;
    color: #4A5568;
    line-height: 1.6;
}

.description-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ed3237;
    font-weight: bold;
    font-size: 20px;
}

/* Project Photos Styling */
.project-photos h2 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #2d3a8c, #ed3237);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
}

/* Project Documents Styling */
.project-documents h2 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #2d3a8c, #ed3237);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive adjustments for description sections */
@media (max-width: 768px) {
    .description-section {
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .description-section h2 {
        font-size: 20px;
    }

    .description-section li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .description-section {
        padding: 15px;
        margin-bottom: 25px;
        border-radius: 15px;
    }

    .description-section h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .description-section li {
        padding-left: 20px;
        font-size: 13px;
    }
}
