.about-section {
            background: rgba(17, 34, 64, 0.8);
            border-radius: 15px;
            padding: 80px;
            margin: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        /* Animated background elements */
        .background-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
            border-radius: 15px;
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            background: rgba(100, 255, 218, 0.15);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-1000px) translateX(500px) rotate(360deg);
                opacity: 0;
            }
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            border: 1px solid var(--accent-color);
            animation: rotate 30s infinite linear;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .pulse-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(100, 255, 218, 0.2);
            animation: pulse 8s infinite ease-in-out;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            color: var(--text-primary);
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 15px auto;
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .profile-image {
            text-align: center;
            position: relative;
        }

        .profile-img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-color);
            box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }

        .profile-img:hover {
            transform: scale(1.03);
            box-shadow: 0 0 40px rgba(100, 255, 218, 0.5);
        }

        .img-border-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 320px;
            height: 320px;
            border: 2px solid rgba(100, 255, 218, 0.3);
            border-radius: 50%;
            animation: rotate 20s infinite linear;
            z-index: 1;
        }

        .img-border-effect::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            background: var(--accent-color);
            border-radius: 50%;
        }

        .about-text {
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        .about-text h3 {
            color: var(--accent-color);
            font-size: 1.8rem;
            margin-bottom: 20px;
            animation: fadeIn 1s ease-out;
        }

        .about-text p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            animation: fadeIn 1.5s ease-out;
        }

        .highlight {
            color: var(--accent-color);
            font-weight: 600;
        }

        .content-boxes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            position: relative;
            z-index: 2;
        }

        .content-box {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 25px;
            transition: var(--transition);
            border: 1px solid rgba(100, 255, 218, 0.1);
            height: 100%;
            animation: slideUp 1s ease-out;
            animation-fill-mode: both;
        }

        .content-box:hover {
            transform: translateY(-5px);
            border-color: var(--accent-color);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .content-box:nth-child(1) {
            animation-delay: 0.2s;
        }

        .content-box:nth-child(2) {
            animation-delay: 0.4s;
        }

        .content-box:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .box-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .box-icon {
            width: 40px;
            height: 40px;
            background: rgba(100, 255, 218, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .box-title {
            color: var(--text-primary);
            font-size: 1.3rem;
            font-weight: 600;
        }

        .philosophy-item {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }

        .philosophy-item::before {
            content: "•";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .interest-list, .hobby-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .interest-item, .hobby-item {
            background: rgba(100, 255, 218, 0.1);
            color: var(--accent-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .interest-item:hover, .hobby-item:hover {
            background: rgba(100, 255, 218, 0.2);
            transform: translateY(-2px);
        }

        @media (max-width: 968px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .content-boxes {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 40px 20px;
            }
            
            .profile-img {
                width: 250px;
                height: 250px;
            }
            
            .img-border-effect {
                width: 270px;
                height: 270px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .profile-img {
                width: 200px;
                height: 200px;
            }
            
            .img-border-effect {
                width: 220px;
                height: 220px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }