/* Content Sections */
        .content-section {
            padding: 3rem 0;
        }
        .section-title {
            font-family: 'Dancing Script', cursive;
            color: var(--primary-dark);
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--accent);
            margin: 0.75rem auto 0;
        }

        /* Introduction Text */
        .intro-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark);
        }        

        .btn-custom {
            background-color: var(--primary);
            color: white;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            transition: var(--transition);
            text-decoration: none;
            font-weight: 500;
            border: 2px solid transparent;
        }
        .btn-custom:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }
        .btn-outline-custom {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline-custom:hover {
            background-color: var(--primary);
            color: white;
        }
        