        /* Global Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f4f4f4;
            color: #333;
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        /* Full-width header */
        header {
            background-color: #115076;
            color: #fff;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 40px;
			border-top: #f1ba29 solid 4px;
			border-bottom: #f1ba29 solid 4px;
        }

.blog-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin-top: 20px;
}

.blog-card {
	border: 1px solid #d9d9d9;
	border-radius: 6px;
	padding: 14px 16px;
	background: #fff;
	text-align: center;
}

.blog-card a {
	display: block;
	text-decoration: none;
	font-weight: 600;
}

.resource-intro {
	margin-bottom: 18px;
}

.resource-note {
	margin-bottom: 22px;
}

        /* Logo placeholder */
        .logo {
            width: 150px;
            height: auto;
        }

        /* Navigation styles */
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
			font-size: 1.25em;
        }

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }

        nav ul li a:hover {
            color: #f1ba29;
        }
		
        nav ul li a:active {
            color: #f1ba29;
        }

        /* Hamburger Menu for Mobile */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 4px;
        }

        nav {
            display: flex;
        }

        nav ul {
            flex-direction: row;
        }

		.A1{
			background-image: url('/images/florida-parenting-class_X2000.webp');
		}
		.A2{
			background-image: url('/images/florida-parenting-class_online_X2000.webp');
		}
		.A3{
			background-image: url('/images/male_teens_playing_soccer_X2000.webp');
		}
		.A4{
			background-image: url('/images/florida-parenting-class_teen-river-studying_X2000.webp');
		}
		.A5{
			background-image: url('/images/parents_discussion_X2000.webp');
		}
		.A6{
			background-image: url('/images/parenting_mother_and_daughter_riding_on_seadoo_X2000.webp');
		}
		.A7{
			background-image: url('/images/parenting_kids_riding_bicycle_on_old_rail_X2000.webp');
		}
		.A8{
			background-image: url('/images/parenting_child_and_father_build_castle_X2000.webp');
		}
		.A9{
			background-image: url('/images/parenting_girls_jumping_on_trampoline_X2000.webp');
		}
		
        /* Hero Image */
        .hero {
            width: 100%;
            height: 600px;
            
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
			border-bottom: #f1ba29 solid 4px;
        }

        .hero h1 {
            font-size: 2.5em;
            color: #f1f0f0;
            background-color: rgba(0, 0, 0, 0.35);
            padding: 10px 40px 10px 40px;
			margin: 500px auto 0 auto;
			border-radius: 0px;
			border: 0px white solid;
			width: 100%;
			text-align: center;
        }

        /* Main content styles */
        section {
            padding: 50px 40px;
            background-color: #fff;
            margin: 20px auto;
            max-width: 1200px;
            border-radius: 8px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        }

        section h2 {
            color: #005b99;
            font-size: 2em;
            margin-bottom: 15px;
        }

        section p {
            font-size: 1.1em;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        section ul {
            margin-left: 20px;
        }
		
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ff5722;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2em;
            font-weight: bold;
            margin-top: 20px;
        }

        .btn:hover {
            background-color: #ff784e;
        }
		
        /* Blog Links (Card Style) */
        .blog-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .blog-card {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease-in-out;
        }

        .blog-card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .blog-card a {
            color: #005b99;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
        }

        .blog-card a:hover {
            text-decoration: none;
			color: red;
        }

        /* Spacing for better readability */
        section p, section ul li {
            margin-bottom: 15px;
        }

        /* Alternating background sections */
        .alternate-section {
            background-color: #f1f1f1;
            padding: 50px 40px;
        }

        footer {
            background-color: #115076;
            color: #fff;
            text-align: center;
            padding: 20px;
            font-size: 0.9em;
        }
		
		
		
		
		
        /* Mobile Menu */
        @media (max-width: 1400px) {
			/* Hero Image */
			.A1{
				background-image: url('/images/florida-parenting-class_X1500.webp');
			}
			.A2{
				background-image: url('/images/florida-parenting-class_online_X1500.webp');
			}
			.A3{
				background-image: url('/images/male_teens_playing_soccer_X1500.webp');
			}
			.A4{
				background-image: url('/images/florida-parenting-class_teen-river-studying_X1500.webp');
			}
			.A5{
				background-image: url('/images/parents_discussion_X1500.webp');
			}
			.A6{
				background-image: url('/images/parenting_mother_and_daughter_riding_on_seadoo_X1500.webp');
			}
			.A7{
				background-image: url('/images/parenting_kids_riding_bicycle_on_old_rail_X1500.webp');
			}
			.A8{
				background-image: url('/images/parenting_child_and_father_build_castle_X1500.webp');
			}
			.A9{
				background-image: url('/images/parenting_girls_jumping_on_trampoline_X1500.webp');
			}
			.hero {
				width: 100%;
				height: 452px;
				background-size: cover;
				background-position: center;
				display: flex;
				justify-content: center;
				align-items: center;
			}

			.hero h1 {
				font-size: 1.5em;
				color: #f1f0f0;
				background-color: rgba(0, 0, 0, 0.15);
				padding: 10px 40px;
				margin: 400px auto 40px auto;
				border-radius: 0px;
				border: 0px white solid;
				width: 100%;
				text-align: center;
			}
			        /* Logo placeholder */
			.logo {
				width: 150px;
				height: auto;
			}
		}

        /* Mobile Menu */
        @media (max-width: 1200px) {
			/* Hero Image */
			.A1{
				background-image: url('/images/florida-parenting-class_X1000.webp');
			}
			.A2{
				background-image: url('/images/florida-parenting-class_online_X1000.webp');
			}
			.A3{
				background-image: url('/images/male_teens_playing_soccer_X1000.webp');
			}
			.A4{
				background-image: url('/images/florida-parenting-class_teen-river-studying_X1000.webp');
			}
			.A5{
				background-image: url('/images/parents_discussion_X1000.webp');
			}
			.A6{
				background-image: url('/images/parenting_mother_and_daughter_riding_on_seadoo_X1000.webp');
			}
			.A7{
				background-image: url('/images/parenting_kids_riding_bicycle_on_old_rail_X1000.webp');
			}
			.A8{
				background-image: url('/images/parenting_child_and_father_build_castle_X1000.webp');
			}
			.A9{
				background-image: url('/images/parenting_girls_jumping_on_trampoline_X1000.webp');
			}
			.hero {
				width: 100%;
				height: 302px;
				
				background-size: cover;
				background-position: center;
				display: flex;
				justify-content: center;
				align-items: center;
			}

			.hero h1 {
				font-size: 1.5em;
				color: #f1f0f0;
				background-color: rgba(0, 0, 0, 0.15);
				padding: 10px 40px;
				margin: 275px auto 50px auto;
				border-radius: 0px;
				border: 0px white solid;
				width: 100%;
				text-align: center;
			}
			        /* Logo placeholder */
			.logo {
				width: 150px;
				height: auto;
			}
		}

        /* Mobile Menu */
        @media (max-width: 998px) {
            nav ul {
                display: none;
                flex-direction: column;
                background-color: #005b99;
                width: 100%;
                position: absolute;
                top: 60px;
                left: 0;
                padding: 0;
            }

            nav ul.show {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            nav ul li {
                width: 100%;
                text-align: center;
                padding: 15px 0;
                margin: 0;
            }

            nav ul li a {
                display: block;
                width: 100%;
            }
			/* Logo placeholder */
			.logo {
				width: 125px;
				height: auto;
			}
        }

        /* Mobile Menu */
        @media (max-width: 500px) {
			/* Hero Image */
			.A1{
				background-image: url('/images/florida-parenting-class_X500.webp');
			}
			.A2{
				background-image: url('/images/florida-parenting-class_online_X500.webp');
			}
			.A3{
				background-image: url('/images/male_teens_playing_soccer_X500.webp');
			}
			.A4{
				background-image: url('/images/florida-parenting-class_teen-river-studying_X500.webp');
			}
			.A5{
				background-image: url('/images/parents_discussion_X500.webp');
			}
			.A6{
				background-image: url('/images/parenting_mother_and_daughter_riding_on_seadoo_X500.webp');
			}
			.A7{
				background-image: url('/images/parenting_kids_riding_bicycle_on_old_rail_X500.webp');
			}
			.A8{
				background-image: url('/images/parenting_child_and_father_build_castle_X500.webp');
			}
			.A9{
				background-image: url('/images/parenting_girls_jumping_on_trampoline_X500.webp');
			}
			.hero {
				width: 100%;
				height: 151px;
				background-size: cover;
				background-position: center;
				display: flex;
				justify-content: center;
				align-items: center;
			}

			.hero h1 {
				font-size: .75em;
				color: #f1f0f0;
				background-color: rgba(0, 0, 0, 0.15);
				padding: 7px 40px;
				margin: 155px auto 50px auto;
				border-radius: 0px;
				border: 0px white solid;
				width: 100%;
				text-align: center;
			}
			        /* Logo placeholder */
			.logo {
				width: 75px;
				height: auto;
			}
		}


/********************* Kids Matterr CSS ***********************/

.controller {
	position: relative;
	float: left;
	margin-bottom: 20px;
	width: 100%
}

.controller5 {
	position: relative;
	float: left;
	margin-bottom: 10px;
	width: 100%
}

fieldset {
	margin: 10px auto 0 auto;
	position: relative;
	clear: both;
	background-color: #e4e4e4;
	padding: 2%;
	border-radius: 5px;
	max-width: 90%;
	overflow: hidden;
	border: 1px solid #000
}

label {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
	width: auto
}


.btn5 {
	width: 100%;
	padding: 1.5%;
	padding-top: 40px;
	padding-bottom: 40px;
	font-size: .75em;
	border-radius: 5px;
	letter-spacing: 2px;
	background-color: blue;
	color: #fff;
	border: 2px solid #000;
	min-height: 2em;
	cursor: pointer
}

.btn5:hover {
	background-color: #fff;
	color: blue;
	border: 2px solid blue;
	cursor: pointer
}

.btn5R {
	width: 100%;
	padding: 1.5%;
	padding-top: 40px;
	padding-bottom: 40px;
	font-size: .75em;
	border-radius: 5px;
	letter-spacing: 2px;
	background-color: red;
	color: #fff;
	border: 2px solid #000;
	min-height: 2em;
	cursor: pointer
}

.btn5R:hover {
	background-color: #fff;
	color: red;
	border: 2px solid red;
	cursor: pointer
}

.lblContact {
	position: relative;
	float: left;
	width: 200px;
	min-width: 200px;
	overflow: hidden
}

.lblContact2 {
	position: relative;
	float: left;
	width: 250px;
	min-width: 250px;
	overflow: hidden
}

.lblContact3 {
	position: relative;
	float: left;
	width: 300px;
	min-width: 300px;
	overflow: hidden
}

.parent_labels {
	position: relative;
	float: left;
	display: block;
	margin-right: 5px;
	font-weight: 400;
	color: #666;
	font-variant: small-caps
}

.parent_labels5 {
	position: relative;
	float: left;
	margin-right: 5px;
	font-weight: 700;
	color: #666;
	font-variant: small-caps;
	line-height: 1em;
	min-width: 40%;
	max-width: 50%;
	font-size: 1em;
	margin-bottom: 2em
}

input[type='text'],
input[type='password'],
select {
	width: 100%;
	padding: 1.5%;
	font-size: .75em;
	border-radius: 5px;
	letter-spacing: 2px
}

input[type='text'].input_txt46 {
	width: 10em;
	padding: 1.5%;
	font-size: .75em;
	border-radius: 5px;
	letter-spacing: 2px
}

.indigent {
	position: relative;
	margin: auto;
	font-size: .75em;
	text-align: center;
	display: block;
	width: 80%;
	margin-top: 1em;
	margin-bottom: 1em;
	padding: 1em;
	color: red
}

.register_now {
	position: relative;
	float: right;
	display: block;
	width: 25%;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 10px;
	font-size: .75em;
	padding: 1em;
	overflow: hidden;
	margin-top: 0
}

.register2 {
	margin-top: 2em
}


.display_errors {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px dashed #C00;
	background-color: #ffff8b;
	padding: 15px;
	color: green;
	width: 90%
}

.errors {
	position: relative;
	border: 1px dashed #C00;
	background-color: #ffff8b
}

.hide_error {
	display: none
}

.show_error {
	position: relative;
	width: 95%;
	clear: both;
	display: block;
	color: #C00;
	font-size: 9pt;
	font-family: arial, verdana;
	font-weight: 400;
	line-height: 1.25em;
	margin-bottom: 1.5em
}

.dont_show {
	display: none
}

.showit {
	display: block;
	left: 30px;
	font-weight: 400
}

	.parenting_inputs5150 {
		position: relative;
		text-align: center
	}
	.parenting_inputs5150 a {
		font-weight: 700;
		text-decoration: none
	}
	.container-fluid, .row {
		position: relative;
		margin-left: auto;
		margin-right: auto;
		margin-top: 0;
		padding: 0
	}


	.centered_block {
		position: relative;
		margin: auto;
		text-align: center;
		display: block;
		width: 60%;
		margin-top: 2em;
		margin-bottom: 4em;
		border: 3px solid #08223e;
		padding: 4em
	}
	.centered_block h4 {
		color: red
	}
h1.h1_parenting {
	font-size: 1.5em;
	text-align: center
}

h3.h3_parenting {
	font-size: 1.25em;
	text-align: center
}