    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        p {

            font-weight: bold;
            color: black;
        }

        h1 {

            letter-spacing: 3px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background-color: black; /*linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            /* OPTIONAL: Uncomment to add background image */
            /*background-image: url('shotshell_edited_edited.jpg'); 
            background-size: cover; 
            background-position: center; 
            background-attachment: fixed; */
            /* background-blend-mode: overlay; */ /* Blends image with gradient */
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .app-container {
            max-width: 1400px;
            width: 100%;
            background: rgba(255, 255, 255, 0.7); /* FIXED */
            /*background: rgba(255, 255, 255, 0.95);
            /* OPTIONAL: Uncomment to add background image to white container */
            background-image: url('shell2.jpg');
            /*background-position:center; 
            background-repeat: repeat;*/
           background-blend-mode: overlay;  /* Blends image with white background */
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            min-height: 90vh;
            display: grid;
            grid-template-rows: auto 1fr;
        }

        /* Header */
        .header {
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            /* OPTIONAL: Uncomment to add background image to header */
           background-image: url('shotgunsunset2.jpg'); 
            background-size: cover; 
            background-position: center; 
            /* background-blend-mode: overlay; */ /* Blends image with gradient */
            padding: 70px 40px;
            color: white;
        }

        .header h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .header p {
            opacity: 0.9;
            font-size: 16px;
        }

        /* Main Content */
        .main-content {
            padding: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-content: start;
        }

        /* Cards */
        .card {
         
            background: rgba(255, 255, 255, 0.7); /* 70% opaque white */
            /* OPTIONAL: Uncomment to add background image to cards */
            background-image: url('shotshell_edited_edited.jpg');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay; /* Blends image with white background */
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: #667eea;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background-size: 70%;
            background-position: center;
            background-repeat: no-repeat;
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            /* OPTIONAL: Uncomment to add background image to card icons */
            /*background-image: url('shotshell_edited_edited.jpg'); 
            background-size: cover; 
            background-position: center; 
            /*background-blend-mode: overlay; */ /* Blends image with gradient */
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #333;
        }

        .card p {
            color: black;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .card-button {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            /* OPTIONAL: Uncomment to add background image to buttons */
            /*background-image: url('shotshell_edited_edited.jpg');
            background-size: cover; 
            background-position: center;
            /* background-blend-mode: overlay; */ /* Blends image with gradient */
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .card-button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        /* Modal/Popup */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            /* OPTIONAL: Uncomment to add background image to modal overlay */
            /* background-image: url('modal-overlay.jpg'); */
            /* background-size: cover; */
            /* background-position: center; */
            /* background-blend-mode: darken; */ /* Blends image with dark overlay */
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            /* OPTIONAL: Uncomment to add background image to modal content */
            /* background-image: url('modal-background.jpg'); */
            /* background-size: cover; */
            /* background-position: center; */
            /* background-blend-mode: overlay; */ /* Blends image with white background */
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #f0f0f0;
            border: none;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: #e0e0e0;
            transform: rotate(90deg);
        }

        .modal-content h2 {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 76%, #3b82f6 100%);
            /*background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);*/
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            font-size: 28px;
        }

        .modal-content p {
            color: #666666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* Date Selector for Course Registration */
        .date-selector {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 25px 0;
            padding: 20px;
            background: rgba(30, 58, 138, 0.05);
            border-radius: 10px;
        }

        .date-selector .date-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .date-selector .date-option label {
            font-weight: 600;
            color: #1e3a8a;
            font-size: 15px;
        }

        .date-selector .date-option input[type="radio"] {
            width: 24px;
            height: 24px;
            cursor: pointer;
            accent-color: #1e3a8a;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            /* OPTIONAL: Uncomment to add background image to submit button */
            /* background-image: url('submit-button-background.jpg'); */
            /* background-size: cover; */
            /* background-position: center; */
            /* background-blend-mode: overlay; */ /* Blends image with gradient */
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        form h3 {
        text-align: center;
        }

        /* Form Row Split - Side by Side Layout */
        .form-row-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        /* Payment Options */
        .payment-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }

        .payment-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: rgba(30, 58, 138, 0.05);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .payment-option:hover {
            background: rgba(30, 58, 138, 0.1);
        }

        .payment-option input[type="radio"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #1e3a8a;
        }

        .payment-option span {
            font-weight: 500;
            color: #333;
        }

        /* Mobile - Stack vertically */
        @media (max-width: 768px) {
            .form-row-split {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }

        /* Mobile - Stack vertically */
        @media (max-width: 768px) {
            .date-selector {
                flex-direction: column;
                gap: 15px;
            }
            
            .date-selector .date-option {
                flex-direction: row;
                justify-content: space-between;
                width: 100%;
                padding: 10px;
                background: white;
                border-radius: 8px;
            }
        }

        /* Course Manual Modal */

        .manualbutton {
        text-align: center;
        margin: 30px 0;
        }

        .manualbutton .form-submit {
        display: inline-block;
        width: auto;
        text-decoration: none;
        }

        .modal-content img {
        display: block;
        margin: 30px auto 0 auto;
        max-width: 100%;
        height: auto;
        }

        /* CSS Modal 6 LINKS*/

        /* Link Buttons Grid */
        .link-buttons-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .link-button {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            /* OPTIONAL: Uncomment to add background image to link buttons */
            /* background-image: url('button-background.jpg'); */
            /* background-size: cover; */
            /* background-position: center; */
            /* background-blend-mode: overlay; */
            color: white;
            text-decoration: none;
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .link-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
        }

        .link-button-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            /* OPTIONAL: Uncomment to add icon image */
            /* background-image: url('your-icon.png'); */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 10px;
            flex-shrink: 0;
        }

        .link-button-text {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .link-button-text strong {
            font-size: 18px;
            font-weight: 700;
        }

        .link-button-text span {
            font-size: 13px;
            opacity: 0.9;
        }

        /* Mobile - Stack vertically */
        @media (max-width: 768px) {
            .link-buttons-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 20px;
            }

            .header h1 {
                font-size: 24px;
            }

            .main-content {
                padding: 20px;
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .modal-content {
                padding: 30px 20px;
            }
        }