.wrapper{
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
body {
    background-color: #f5f7fa;
    font-family: 'Poppins', 'Verdana', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}
h1,h2,h3{
	font-family:Georgia, serif;
}
h1 {
    text-align:center;
    font-size: 36px;
    color:#2C3E50;
    margin-bottom:10px;
}
h2 {
    margin-bottom:10px;
    font-size: 24px;
    color:#2C3E50;
}
h3 {
    color: #fff; 
    font-size: 32px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
h4 {
    color:#2C3E50;
    font-family:Georgia, serif;
    font-size:22px;
    margin-bottom:20px;
}
#header{
    text-align:center;
    margin-bottom:20px;
}
#navigation{
	display: flex;
    justify-content: center;
    background-color: #D86836;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    list-style: none;
}
.primarynav {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}
.primarynav a:hover{
	text-decoration:underline;
	background-color:dodgerblue;
}
a:link, a:visited, a:active {
    color:white; text-decoration: none; font-weight: bold;
}
.current{
	border-bottom:solid 3px white;
}
#content{
    font: Verdana, sans-serif;
    font-weight: bold;
}
#footer{
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    font-size: 14px;
    color: #999;
    border-top: 1px solid #e0e0e0;
}
#content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}
.hero-banner {
    width: 100%;
    height: 300px;
    background: url('images/scottish-highlands.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}