* { 
	margin: 0; 
	padding: 0; 
	box-sizing: 
	border-box; 
	font-family: 'Segoe UI', 
	sans-serif;
	 }
body { 
	background: #f9f9f9; 
	color: #333; 
	line-height: 1.6; 
}
header { 
	background: cadetblue; 
	color: #fff; 
	padding: 2px; 
	text-align: left; 
}
header h1 { 
	font-size: 2.5rem; }
nav { 
	background: cadetblue; 
	display: flex; 
	justify-content: right; 
	gap: 29px; 
	padding: 0px 50px; 
}
nav a { 
	color: #fff; 
	text-decoration: none; 
	font-weight: 500; 
}
.hero { 
	background: #e4f0ff; 
	padding: 40px 20px; 
	text-align: center;
	 }
.hero h2 { 
	font-size: 2rem; 
	margin-bottom: 10px; 
}
.hero p { 
	font-size: 1.1rem; 
	color: #555; 
}
.container { 
	max-width: 1100px; 
	margin: 30px auto; 
	padding: 0 20px; 
}
.posts { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
	 }
.post { 
	background: #fff; 
	padding: 20px; 
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	 }
.post h3 { 
	margin-bottom: 10px;
	 }
.post p { 
	color: #555; 
}
.btn { 
	display: inline-block; 
	margin-top: 10px; 
	background: #1a73e8; 
	color: #fff; 
	padding: 8px 16px; 
	border-radius: 5px; 
	text-decoration: none; 
}
.newsletter { 
	margin: 40px 0; 
	padding: 30px; 
	background: #fff3cd; 
	text-align: center; 
	border-radius: 10px; 
}
.newsletter input { 
	padding: 10px; 
	width: 250px; 
	margin-right: 10px; 
	border: 1px solid #ccc; 
}
.newsletter button { 
	padding: 10px 20px; 
	background: #ff9900; 
	color: #fff; 
	border: none; 
	cursor: pointer; }
footer { 
	background: #222; 
	color: #aaa; 
	text-align: center; 
	padding: 20px; 
	margin-top: 40px; 
}
.slider-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 450px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .slider {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            width: 25%;
            height: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: white;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s;
        }
        
        .slider-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .prev {
            left: 20px;
        }
        
        .next {
            right: 20px;
        }
.footer {
    position: relative;
	overflow: hidden;
}

.wrap {
	background: #3E3E3E;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

 .footer a,
 .footer h3 {
    font: 'Open Sans', sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 26px;
 }

.clear {
    clear: both;
}

.left {
    text-align: left;
    float: left;
    width: 33%;
    padding: 20px;
}

.right {
    float: right;
    text-align: left;
    font: 'Open Sans', sans-serif;
    color: #fff;
    font-size: 14px;
    font-we
