/*
Theme Name: GeneratePress Child
Description: Child theme for GeneratePress
Version: 1.0
Template: generatepress
*/

/* Basic styling for the website */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    display: inline-block;
    margin-right: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #007cba;
}

/* Content styling */
.entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Image styling */
img {
    max-width: 100%;
    height: auto;
}

/* Button styling */
.button, .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.button:hover, .btn:hover {
    background: #005a87;
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-navigation li {
        display: block;
        margin-bottom: 10px;
    }
    
    .entry-content {
        padding: 10px;
    }
}





