/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

/* Centered Container */
.container {
    width: 75%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.blog-header {
    background: linear-gradient(135deg, #333, #444);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 5px solid #FF6F00;
}

.blog-header h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: bold;
}

.blog-header .intro {
    font-size: 1.2em;
    margin-top: 10px;
    opacity: 0.9;
}

/* Home Button */
.home-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #FF6F00;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.home-button:hover {
    background: #e65c00;
}

/* Blog Content Section */
.blog-post-content {
    background: white;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
}

/* Blog Image */
.blog-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Links */
a {
    color: #FF6F00;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Headings */
h2 {
    font-size: 2em;
    color: #333;
    margin-top: 40px;
    border-bottom: 3px solid #FF6F00;
    display: inline-block;
    padding-bottom: 5px;
}

h3 {
    font-size: 1.6em;
    color: #333;
}

/* Ordered & Unordered Lists */
ol, ul {
    padding-left: 25px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Content Blocks */
.content-block {
    background: #ececec;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Call to Action (CTA) Button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF6F00;
    color: white;
    font-size: 1.2em;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #e65c00;
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    font-size: 1.4em;
    margin-top: 40px;
    text-align: center;
    font-weight: bold;
}

/* Social Share Buttons */
.social-share {
    text-align: center;
    margin-top: 40px;
}

.social-button {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    font-size: 1em;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.social-button.twitter {
    background-color: #1DA1F2;
    color: white;
}

.social-button.facebook {
    background-color: #3b5998;
    color: white;
}

.social-button:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #333, #444);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    .blog-header {
        padding: 40px 10px;
    }

    .blog-header h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.7em;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 20px;
    }
}
