:root {
    --primary-color: #3b5998;
    --secondary-color: #f8f9fa;
    --accent-color: #4CAF50;
    --text-color: #333;
    --light-text: #6c757d;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px;
    max-width: 160px;
    width: auto;
    height: auto;
    content: url('/gallery/logo.png');
    object-fit: contain;
    display: block;
}

.title h1 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tagline {
    font-style: italic;
    color: var(--light-text);
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background-color: var(--secondary-color);
}

h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 24px;
}

h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

.highlight {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

/* CTA Button */
.cta-button {
    margin-top: 20px;
}

.cta-button a {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button a:hover {
    background-color: #3e8e41;
}

/* Contact Section */
.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 40px 0;
    }
}
