
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
           
            line-height: 1.6;
            color: #333;
            background: #fff;
            padding: 20px;
        }

		h1 {
			  position: relative;
			  display: inline-block;
			  padding: 10px 18px;
			  z-index: 0;
			}

h1::before {
			  content: '';
			  position: absolute;
			  background: #ffeb99; /* yellow background */
			  top: -4px;           /* offset up */
			  left: -4px;          /* offset left */
			  width: calc(100% + 8px);
			  height: 100%;
			  transform: rotate(2deg); /* no space! */
			  z-index: -1;        /* sits behind the text */
			}


        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            min-height: 80vh;
        }

        /* Left Column */
        .left-column {
            position: relative;
        }

        /* Top Yellow Section with Triangle */

			
		/* Container stays full-width for layout/spacing only */
			.yellow-section {
			  margin-bottom: 40px; /* keeps space for the triangle below */
			  /* no background or padding here */
			}

			/* The actual yellow "card" that should hug content */
			.yellow-content {
			  position: relative;
			  display: inline-block;
			  inline-size: min(70ch, 100%);    /* control line length; adjust 60ch to change */
			  background: linear-gradient(135deg, #b5cc83, #abca66);  /*9cc839,   */
			  padding: 24px 32px;
			  
			}

			/* Triangle attached to the yellow card */
			.yellow-content::after {
			  content: '';
			  position: absolute;
			  bottom: -20px;
			  left: 50%;
			  transform: translateX(-50%);
			  width: 0;
			  height: 0;
			  border-left: 20px solid transparent;
			  border-right: 20px solid transparent;
			  border-top: 20px solid #b5cc83;
			}
		/*  **********************  */

			
			
        .yellow-content h2 {
            font-size: 1.8em;
            margin-bottom: 15px;
            color: #333;
        }

        .yellow-content p {
            font-size: 1.1em;
            color: #444;
        }

			.yellow-content ul {
			list-style: none;
  margin: 0;
  padding: 0; 
		}

		.yellow-content ul li {
			position: relative;
  margin-bottom: 1em;
  padding-left: 1.6em;
			
		}

		.yellow-content ul li::before {
			 font-family: "Font Awesome 7 Pro";
  content: "\f340"; /* arrow-right */
  font-weight: 900;
  position: absolute;
  left: -0.3em;              /* snug to the text */
  top: -0.05em;          /* small nudge down */
  font-size: 1.8em;     /* large visual size */
  line-height: 1; 
  color: #ffeb99;
			}
			
        /* Table Section */
        .table-section {
            position: relative;
            margin-top: -30px;
        }

        .table-background {
            position: absolute;
            top: 50px;
            left: 8px;
            width: 100%;
            height: calc(100% - 50px);
            z-index: -1;
        }

        .table-content {
            background: transparent;
            padding: 25px;
            position: relative;
            z-index: 1;
			/*  *** */
			border: 3px solid #ffeb99;
			inline-size: min(70ch, 100%);    /* control line length; adjust 70ch to change */
}
			
        }

        .table-content h3 {
            font-size: 1.5em;
            margin-bottom: 20px;
            color: #333;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        th, td {
            padding: 12px;
            text-align: left;
            /*  border-bottom: 1px solid #eee;  */
        }

        th {
            background: #f8f9fa;
            font-weight: 600;
            color: #333;
        }

        tr:hover {
            background: #f8f9fa;
        }


		.registrationDates{
			text-align:center;
			font-size:14px;
			display: block;
			}
			
        /* Right Column */
        .right-column {
            position: relative;
        }

        /* Class Schedules Section with Triangle */
		
		.schedules-section {
		  margin-bottom: 40px;
		  position: relative; /* allows absolute positioning of arrow */
		}

		/* header text only */
		.schedules-header {
		  position: relative;
		}

		/* heading style */
		.schedules-header h3 {
		  margin: 0;
		  font-size: 1.4em;
		  color: #333;
		}

		/* yellow triangle pointer – positioned in the left white space */
		.triangle-pointer {
		  position: absolute;
		  left: -2.7rem;  /* push arrow left into white space */
		  top: 50%;
		  transform: translateY(-50%);
		  width: 0;
		  height: 0;
		  border-top: 14px solid transparent;
		  border-bottom: 14px solid transparent;
		  border-left: 22px solid #ffeb99;
		}

		/* list styling */
		.schedules-body {
		  margin-top: 0.4rem;
		}

		.schedules-list {
		  list-style-position: outside;
		  margin: 0;
		  padding-left: 1.25em;
		}

		.schedules-list li {
		  margin-bottom: 0.5em;
		}



			
			
        /* Tuition Section */
        .tuition-section {
            margin-bottom: 40px;
        }

        .tuition-section h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: #333;
        }

        .tuition-section p {
            color: #444;
        }

        /* Location Section */
        .location-section {
            margin-bottom: 40px;
        }

        .location-section h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: #333;
        }

        .address {
            color: #0073AE;
            font-weight: 500;
            margin-bottom: 10px;
			font-size: 12px;
        }

        .directions {
            color: #444;
            margin-bottom: 20px;
            font-style: italic;
        }

        .map-placeholder {
			width: 100%;
			margin: 25px 0;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.map-placeholder img {
			max-width: 100%;
			height: auto;
			max-height: 250px;
			display: block;
			border-radius: 8px;
		}

        /* Learn More Section */
        .learn-more {
            padding: 20px;
            margin-bottom: 40px;
			margin-top: 25px;
            background: transparent;
        }


		.learn-more h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
    position: relative; /* required for absolute child positioning */
    display: inline-block;
    padding: 8px 15px;
    z-index: 0; /* create a stacking context so ::before stays behind */
}

.learn-more h4::before {
    content: '';
    position: absolute;
    background: #b3d9ff;
    top: 3px;
    left: 3px;
    width: calc(100% + 7px);
    height: 100%;
    transform: rotate(-3deg);
    z-index: -1; /* sits behind text but within the h4 */
}


        .learn-more p {
            color: #444;
            margin-bottom: 15px;
			
        }

        .learn-more-btn {			
			display: inline-block;
			background-color: #0076a8; /* Clark College blue */
			color: #fff;
			font-weight: bold;
			padding: 12px 24px;
			border-radius: 6px;
			text-decoration: none;
			font-size: 16px;
			text-align: center;
			transition: background-color 0.3s ease;
        }

        .learn-more-btn:hover {
            background-color: #005f82;
			color: #fff;
        }

        /* Full-width Disclaimer */
        .disclaimer {
            grid-column: 1 / -1;
            margin-top: 0px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            font-size: 0.9em;
            color: #666;
            line-height: 1.5;
        }
		

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 10px;
            }

            .schedules-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .triangle-pointer {
                margin-right: 0;
                margin-bottom: 10px;
            }

            .schedules-list {
                margin-left: 0;
            }

            table {
                font-size: 0.9em;
            }

            th, td {
                padding: 8px;
            }
			
			.map-placeholder img {
				max-height: 200px;
				width: 100%;  
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .yellow-section {
                padding: 20px;
            }

            .table-content {
                padding: 20px;
            }

            table {
                font-size: 0.8em;
            }

            th, td {
                padding: 6px;
            }
        }
			