/* GeiserSoft Website Styles */

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #2c3e50;
    color: white;
    height: 120px; /* Reduced from implied height of padding */
    display: flex;
    align-items: center; /* Vertically centers content */
    justify-content: center; /* Horizontally centers content */
    padding: 0; /* Remove padding since we're using fixed height */
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px; /* Adds space between header elements */
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 0px;
}

/* Main Content Styles */
main {
    padding: 30px 0;
}

section {
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFFFFF  ;
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #2c3e50;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

p {
    margin-bottom: 15px;
}

/* Extension Section Styles */
.extension-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.extension-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
}

.extension-image {
    max-width: 300px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.extension-text {
    flex: 1;
    min-width: 300px;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: white;
    text-decoration: none; /* Removes underline */
}

/* Style for visited links */
footer a:visited {
    color: white;
}

/* Style for hover state (optional) */
footer a:hover {
    color: white;
    text-decoration: underline; /* Adds underline on hover - optional */
}

/* Style for active state (when clicking) */
footer a:active {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    
    .extension-info {
        flex-direction: column;
        text-align: center;
    }
}