﻿/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #0275d8;
}

ul {
    list-style: none;
}

/* Header Styles */
.main-header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.header-actions {
    display: flex;
    align-items: center;
}

    .header-actions a {
        margin-left: 20px;
        color: #2c3e50;
        display: flex;
        align-items: center;
    }

        .header-actions a i {
            margin-right: 5px;
            font-size: 1.2rem;
        }

/* Footer Styles */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

    .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #fff;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer-column a {
        color: #ecf0f1;
    }

        .footer-column a:hover {
            color: #3498db;
        }

.social-media {
    margin-top: 15px;
}

    .social-media a {
        display: inline-block;
        margin-right: 15px;
        font-size: 1.5rem;
    }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

        .header-actions a {
            margin: 0 10px;
        }

    .footer-column {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-wrap: wrap;
    }

        .header-actions a {
            margin: 5px 10px;
        }
}
