/* Basic Styles for SEO Test Sites */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}
.main-content {
    flex: 3;
}
.sidebar {
    flex: 1;
    margin-top: 20px;
}
.sidebar-widget {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-left: 4px solid #77aaff;
}
.sidebar-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}
header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}
header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header .logo {
    float: left;
    font-size: 24px;
    font-weight: bold;
}
header nav {
    float: right;
    margin-top: 10px;
}
header li {
    float: left;
    display: inline;
    padding: 0 20px;
}
main {
    padding: 20px 0;
}
.hero {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.hero h1 {
    font-size: 36px;
}
.resource-block {
    background: #f9f9f9;
    border-left: 4px solid #77aaff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.resource-block h3 {
    color: #333;
    margin-top: 0;
}
.resource-block p {
    margin-bottom: 12px;
}
section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
h2 {
    color: #333;
    margin-top: 25px;
}
h3 {
    color: #555;
    margin-top: 20px;
}
.faq-item {
    margin-bottom: 15px;
}
.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.share-btn {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: opacity 0.3s;
}
.share-btn:hover {
    opacity: 0.8;
}
.share-btn.twitter {
    background: #1DA1F2;
}
.share-btn.reddit {
    background: #FF4500;
}
.share-btn.linkedin {
    background: #0077B5;
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}
footer p {
    margin: 8px 0;
    line-height: 1.6;
}
footer p:first-child {
    font-weight: bold;
    font-size: 16px;
}
footer p:last-child {
    font-size: 14px;
    color: #ccc;
}
