body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 0;
    border-bottom: 5px solid #3498db;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 50px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.hero {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero .subheadline {
    font-size: 1.5em;
    margin-bottom: 40px;
}

.hero .container {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center items horizontally */
    gap: 20px; /* Space between elements */
}

.hero .container h1,
.hero .container .subheadline {
    width: 100%; /* Ensure text takes full width to center properly */
}

.hero .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between buttons */
    margin-top: 20px;
}

.cta-button {
    background-color: #2ecc71;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.cta-button.chrome {
    background-color: #4285f4; /* Google Chrome blue */
}

.cta-button.edge {
    background-color: #0078d7; /* Microsoft Edge blue */
}

.cta-button:hover {
    background-color: #27ae60;
}

.cta-button.chrome:hover {
    background-color: #3367d6;
}

.cta-button.edge:hover {
    background-color: #005ea6;
}

.problem-section, .solution-section, .benefits-section {
    padding: 60px 0;
    text-align: center;
}

.problem-section h2, .solution-section h2, .benefits-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.problem-section p, .solution-section p, .benefits-section p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.solution-section ul, .solution-section ol, .benefits-section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
}

.solution-section ul li, .solution-section ol li, .benefits-section ul li {
    background-color: #ecf0f1;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #3498db;
    font-size: 1.1em;
}

.solution-section .note {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
}

.video-showcase {
    padding: 60px 0;
    text-align: center;
    background-color: #e9ecef;
}

.video-showcase h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c3e50;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    background-color: #000; /* Fallback background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-size: 0.9em;
    margin: 5px 0;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.blog-post {
    padding: 40px 0;
    background-color: #fff;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-post h1 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.blog-post .post-meta {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.blog-post .blog-image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
}

.blog-post p {
    text-align: left;
    margin-bottom: 15px;
}

.blog-post h2 {
    font-size: 2em;
    color: #3498db;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.blog-post blockquote {
    background-color: #ecf0f1;
    border-left: 5px solid #3498db;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
    text-align: left;
}

.blog-post blockquote p {
    margin: 5px 0;
}

.blog-post ol, .blog-post ul {
    text-align: left;
    margin: 20px 0 20px 20px;
    list-style-type: decimal;
}

.blog-post ul {
    list-style-type: disc;
}

.blog-post ol li, .blog-post ul li {
    margin-bottom: 10px;
    background-color: transparent;
    border-left: none;
    padding: 0;
    font-size: 1em;
}

.blog-listing {
    padding: 60px 0;
    text-align: center;
}

.blog-listing h1 {
    font-size: 3em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.blog-listing p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.blog-card h2 a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-card h2 a:hover {
    text-decoration: underline;
}

.blog-card .post-meta {
    font-size: 0.85em;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.blog-card-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Cover the area, cropping if necessary */
    border-radius: 4px;
    margin-bottom: 15px;
}

.blog-card p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

.blog-card .read-more {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.blog-card .read-more:hover {
    background-color: #2980b9;
}
