:root {
            --main-color: #fdc800;
            --color-white: #ffffff;
            --theme-color2: #fdc800;
            --light-yellow: #fff4b8;
            --darker-yellow: #fdc800;
            /* --darkest-yellow: #f4b400; */
            --darkest-yellow: #fdc800;
            --paragraph-color: #565872;
            --body-font: "Rubik", sans-serif;
            --body-font-size: 16px;
            --line-height30: 1.7;
            --shadow-main: 0 20px 60px rgba(253, 200, 0, 0.15);
            --shadow-hover: 0 30px 80px rgba(253, 200, 0, 0.25);
            /* --gradient-main: linear-gradient(135deg, #fdc800 0%, #f4b400 50%, #f5c106 100%); */
            --gradient-main: linear-gradient(135deg, #fdc800 0%, #fdc800 50%, #fdc800 100%);
            --gradient-light: linear-gradient(135deg, #fff4b8 0%, #fdc800 100%);
            --gradient-dark: linear-gradient(135deg, #f4b400 0%, #fdc800 100%);
        }

        .prp-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .prp-body {
            font-family: var(--body-font);
            font-size: var(--body-font-size);
            line-height: var(--line-height30);
            color: var(--paragraph-color);
            background: #f8f9fa;
            overflow-x: hidden;
        }

        /* Header Styles */
        .prp-header {
            background: var(--gradient-main);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
            margin-top: 210px;
        }

        .prp-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: prp-float 20s ease-in-out infinite;
        }

        .prp-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: prp-float 15s ease-in-out infinite reverse;
        }

        @keyframes prp-float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .prp-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .prp-header-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .prp-h1 {
            font-size: 48px;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            animation: prp-fadeInUp 0.8s ease-out;
        }

        .prp-subtitle {
            font-size: 18px;
            color: var(--color-white);
            opacity: 0.9;
            animation: prp-fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes prp-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navigation Sidebar */
        .prp-nav-sidebar {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background: var(--color-white);
            box-shadow: var(--shadow-main);
            border-radius: 0 15px 15px 0;
            padding: 20px 0;
            z-index: 100;
            transition: all 0.3s ease;
        }

        .prp-nav-item {
            display: block;
            padding: 12px 12px;
            color: var(--paragraph-color);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .prp-nav-item:hover {
            color: var(--main-color);
            background: var(--light-yellow);
        }

        .prp-nav-item.prp-active {
            color: var(--color-white);
            background: var(--gradient-main);
        }

        .prp-nav-item.prp-active::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 70%;
            background: var(--darkest-yellow);
            border-radius: 2px;
        }

        /* Main Content */
        .prp-content {
            padding: 60px 0;
        }

        .prp-content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background: var(--color-white);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            padding: 60px;
            animation: prp-fadeIn 1s ease-out;
        }

        @keyframes prp-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .prp-section {
            margin-bottom: 50px;
            scroll-margin-top: 20px;
        }

        .prp-section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--gradient-light);
            border-radius: 50%;
            font-weight: 600;
            color: #f4b400;
            margin-right: 15px;
            font-size: 18px;
            flex-shrink: 0;
        }

        .prp-h2 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            font-weight: 600;
        }

        .prp-h3 {
            font-size: 20px;
            color: var(--darkest-yellow);
            margin: 20px 0 15px;
            font-weight: 600;
        }

        .prp-p, .prp-li {
            color: var(--paragraph-color);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .prp-ul {
            list-style: none;
            padding-left: 0;
        }

        .prp-ul .prp-li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
        }

        .prp-ul .prp-li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--main-color);
            font-weight: 600;
            font-size: 18px;
        }

        /* Contact Card */
        .prp-contact-card {
            background: var(--gradient-light);
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
            box-shadow: var(--shadow-main);
        }

        .prp-contact-card .prp-h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .prp-contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .prp-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--paragraph-color);
        }

        .prp-contact-item strong {
            color: #2c3e50;
            min-width: 80px;
            font-size: 18px;
            font-weight: 500;
        }

        /* Links */
        .prp-link {
            color:#d19c00;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
            font-weight: 500;

        }

        .prp-link:hover {
            color: var(--darkest-yellow);
            text-decoration: underline;
        }

        /* Back to Top Button */
        .prp-back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-main);
        }

        .prp-back-to-top.prp-visible {
            opacity: 1;
            pointer-events: all;
        }

        .prp-back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .prp-nav-sidebar {
                display: none;
            }

            .prp-h1 {
                font-size: 36px;
            }

            .prp-content-wrapper {
                padding: 40px 25px;
            }

            .prp-h2 {
                font-size: 24px;
                flex-wrap: wrap;
            }

            .prp-section-number {
                width: 35px;
                height: 35px;
                font-size: 16px;
                margin-right: 10px;
            }

            .prp-contact-card{
                padding: 30px 10px 30px 20px;
            }

            .prp-contact-item strong {
                font-size: 15px;
                min-width: 58px;
                
            }

            .prp-link{
                font-size: 15px;;
            }

            .prp-contact-item {
                gap: 4px;
            }

            .prp-h3{
                font-size: 18px;
            }
            
        }

        /* Print Styles */
        @media print {
            .prp-nav-sidebar, .prp-back-to-top {
                display: none;
            }

            .prp-header {
                background: none;
                padding: 20px 0;
            }

            .prp-h1 {
                color: #000;
            }

            .prp-content-wrapper {
                box-shadow: none;
                padding: 20px;
            }
        }
    

        .container {
            max-width: 1100px;
        }

        .prp-link:hover {
            color:#f4b400
        }


        /* --- FIX FOR NAVBAR OVERLAP ON MACBOOK-SIZED SCREENS --- */
/* This media query targets screens between 1100px and 1300px wide. */

@media (min-width: 1100px) and (max-width: 1395px) {
  .prp-nav-sidebar {
    top: 356px;
    overflow-y: auto;
    font-size: 12px;
  }

  .prp-nav-item {
    font-size: 12px;
    padding: 4px 10px;
  }

}

@media (min-width:1396px) and (max-width: 1496px){
    .prp-nav-sidebar {
    top: 396px;
    overflow-y: auto;
    font-size: 14px;
  }

  .prp-nav-item {
    font-size: 12px;
    padding: 8px 10px;
  }
}



