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

/* General Settings */
body {
    font-family: Arial, sans-serif;
}

/* Header Section */
header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    margin-left: 20px;
}

.navbar nav ul {
    list-style: none;
    display: flex;
}

.navbar nav ul li {
    margin-right: 20px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* Hero Section */
.circulation-header {
    text-align: center;
    margin: 50px 0;
}

.circulation-header h1 {
    font-size: 28px;
    color: red;
    font-weight: bold;
    line-height: 1.4;
}

/* Circulation Content Section */
.circulation-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.circulation-container {
    display: flex;
    justify-content: space-between;
}

.circulation-left {
    flex: 1.2;
    padding-right: 20px;
}

.circulation-left h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.circulation-left p {
    margin-bottom: 10px;
}

.distribution-locations, .special-features {
    margin: 10px 0 20px 0;
}

.distribution-locations li, .special-features li {
    list-style: none;
    padding: 5px 0;
}

.circulation-right {
    flex: 1;
    margin-left: 20px;
}

.circulation-right img {
    max-width: 100%;
    height: auto;
}

/* Download Section */
.download-map {
    text-align: center;
    padding: 40px 0;
}

.download-map h2 {
    font-size: 24px;
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
}

.map-download {
    display: inline-block;
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.map-download p {
    margin-bottom: 10px;
}

.map-download button {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Social Section */
.social {
    text-align: center;
    padding: 40px 0;
}

.social h2 {
    font-size: 24px;
    color: red;
}

.social a img {
    height: 40px;
    width: 40px;
}

/* Subscribe Section */
.subscribe {
    background-color: red;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.subscribe input[type="email"] {
    padding: 10px;
    border: none;
    width: 300px;
    margin-bottom: 10px;
}

.subscribe button {
    padding: 10px 20px;
    background-color: white;
    border: none;
    color: red;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    color: #777;
}