/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; /* Adjust as needed for readability */
    line-height: 1.6; /* Good for readability */
}

/* Apply Montserrat to all heading elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Most headings look good bold */
    margin-top: 1.5em; /* Space above headings */
    margin-bottom: 0.5em; /* Space below headings */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header.hero, footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

header.hero h1, header.hero p, footer h2 {
    margin-bottom: 1rem;
}

section {
    padding: 2rem 0;
}

section#about, .services, .portfolio, .blog {
    background: #f5f5f5;
    color: #003366;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #555;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin-right: 1rem;
}

footer ul li a {
    color: #B8860B;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #ccc;
}