
        /* About Section */
        .about {
            padding: 5rem 0;
            background-color: var(--white);
            position: relative;
        }

        .about .leaf-decoration {
            bottom: -50px;
            right: 50%;
            transform: rotate(180deg);
        }

        .about-container {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(34, 197, 94, 0.15);
            width: 100%;
            height: 400px;
            object-fit: cover;
            border: 5px solid var(--white);
        }

        .profile-description {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background-color: var(--primary);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
        }

        .about-content {
            flex: 1;
            padding: 32px;
            background-color: var(--light);
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(34, 197, 94, 0.1);
            border-left: 5px solid var(--primary);
        }

        .about-content h3 {
            color: var(--primary-dark);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .about-content h3:first-child {
            margin-top: 0;
        }
