/*
Author: Your Name
Author URI: https://example.com
Description: Lightweight Elementor compatible WordPress theme.
Version: 1.0
License: GPL v2 or later
Text Domain: my-elementor-theme
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.site-header {
    background: #111;
    color: #fff;
    padding: 15px 0;
}

.site-header a {
    color: #fff;
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
}

.content-area {
    padding: 40px 0;
}

.site-footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}