/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI';
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

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

footer .container {
    align-items: inherit;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-img {
    height: 26px;
    width: auto;
}

nav a {
    color: #666;
    text-decoration: none;
    margin-left: 30px;
    font-size: 15px;
}

nav a:hover {
    color: #217346;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #217346;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    border: 2px solid #217346;
    text-align: center;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #1a5c37;
    border-color: #1a5c37;
}

.cta-button.secondary {
    background-color: transparent;
    color: #217346;
    border: 2px solid #217346;
}

.cta-button.secondary:hover {
    background-color: #217346;
    color: #fff;
}

.subtle-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: transparent;
    color: #217346;
    text-decoration: none;
    border: 2px solid #217346;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    text-align: center;
}

.subtle-button:hover {
    background-color: #217346;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #fafafa;
}

.hero .container {
    align-items: stretch;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1 1 0;
    min-width: 0;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero .cta-subtext {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.4rem;
}

.hero-visual-container {
    flex: 1 1 0;
    min-width: 0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    border: 1.3px solid #217346;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
    text-align: center;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: #222;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 900px;
    width: 100%;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-svg {
    aspect-ratio: 1/1;
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05), 0px 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #222;
}

.feature-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.feature-image-container {
    flex: 1;
    height: 280px;
    width: 280px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1.3px solid #217346;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #fafafa;
}

.pricing-content {
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pricing-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 50px;
}

.pricing-header {
    padding-bottom: 30px;
    border-bottom: 2px solid #217346;
    margin-bottom: 35px;
}

.price {
    font-size: 56px;
    font-weight: 600;
    color: #222;
    margin: 0 0 10px 0;
    line-height: 1;
}

.price-description {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.included-list {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.included-list h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.included-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.included-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #217346;
    font-weight: bold;
    font-size: 18px;
}

/* EULA/Privacy/Legal Content */
.eula-content,
.privacy-content {
    padding: 80px 0;
    background-color: #fff;
}

.eula-content h1,
.privacy-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #222;
}

.eula-content .last-updated,
.privacy-content .last-updated,
.eula-content .version,
.privacy-content .version {
    font-size: 14px;
    color: #666;
}

.eula-content .last-updated,
.privacy-content .last-updated {
    margin-bottom: 40px;
}

.eula-content h2,
.privacy-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #222;
}

.eula-content h3,
.privacy-content h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #222;
}

.eula-content p,
.privacy-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.eula-content ul,
.privacy-content ul,
.contact-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.eula-content li,
.privacy-content li,
.contact-content li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.eula-content a,
.privacy-content a {
    color: #217346;
}

/* System Requirements Content */
.requirements-content {
    padding: 80px 0;
    background-color: #fff;
}

.requirements-content h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

.requirements-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

.requirements-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
}

.requirements-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.requirements-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.requirements-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.requirements-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #217346;
    font-weight: bold;
    font-size: 18px;
}

.post-body .note-box {
    margin-top:70px;
}

.note-box {
    background-color: #fafafa;
    border-left: 4px solid #217346;
    padding: 20px 25px;
    margin: 30px 0;
}

.note-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #222;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.shortcut-video {
    width: 100%;
    max-width: 225px;
    height: auto;
}

.post-body .note-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 0px;
    color: #222;
}

.note-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.note-box p:last-child {
    margin-bottom: 0;
}

.note-box a {
    color: #217346;
}

.note-box .cta-button {
    color: #fff;
}

/* Blog Header */
.blog-header {
    padding: 60px 0 40px 0;
    background-color: #fff;
}

.blog-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #222;
}

.blog-header p {
    font-size: 18px;
    color: #666;
}

/* Blog Content */
.blog-content {
    padding: 40px 0 80px 0;
    background-color: #fff;
}

.blog-posts {
    display: grid;
    gap: 50px;
}

.blog-post {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 50px;
}

.blog-post:last-child {
    border-bottom: none;
}

.post-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.post-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.post-title a {
    color: #222;
    text-decoration: none;
}

.post-title a:hover {
    color: #217346;
}

.post-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: #217346;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Post Header */
.post-header {
    padding: 60px 0 40px 0;
    background-color: #fff;
}

.back-link {
    font-size: 15px;
    color: #217346;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.back-link:hover {
    text-decoration: underline;
}

.post-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #222;
    line-height: 1.2;
}

.post-header .post-meta {
    font-size: 15px;
    color: #999;
}

/* Post Content */
.post-content {
    padding: 0 0 80px 0;
    background-color: #fff;
}

.post-title,
.post-body {
    width: 100%;
    max-width: 750px;
}

.eula-body,
.download-body,
.system-requirements-body {
    width: 100%;
}

.post-body h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

.post-body h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
}

.post-body p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-body ul, .post-body ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.post-body li {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.post-body strong {
    font-weight: 600;
}

.post-body em {
    font-style: italic;
}

.post-body code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

.post-image {
    margin: 30px 0;
}

.image-placeholder {
    background-color: #e8e8e8;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    margin-bottom: 10px;
}

figcaption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Download Content */
.download-content {
    padding: 80px 0;
    background-color: #fff;
}

.download-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.download-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.7;
}

.download-box {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 40px;
    margin-bottom: 40px;
}

.download-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.download-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.download-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #217346;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    border: 2px solid #217346;
    text-align: center;
}

.download-button:hover {
    background-color: #1a5c37;
    border-color: #1a5c37;
}

.download-button.secondary {
    background-color: transparent;
    color: #217346;
    border: 2px solid #217346;
}

.download-button.secondary:hover {
    background-color: #217346;
    color: #fff;
}

.file-info {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

.installation-steps {
    margin-top: 50px;
}

.installation-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
}

.installation-steps ol {
    margin-left: 25px;
}

.installation-steps li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.older-versions {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid #e0e0e0;
}

.older-versions h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.older-versions > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.version-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

.version-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.version-info strong {
    font-size: 16px;
    color: #222;
}

.version-date {
    font-size: 14px;
    color: #999;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.contact-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #222;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-method a {
    color: #217346;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #222;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    font-family: inherit;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #217346;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #217346;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    border: 2px solid #217346;
    cursor: pointer;
    font-family: inherit;
}

.submit-button:hover {
    background-color: #1a5c37;
    border-color: #1a5c37;
}

.response-time {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section.links-section {
    flex: 2;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #222;
}

.footer-section p, .footer-section a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #217346;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.footer-links-grid p {
    margin: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content,
    .feature-row,
    .footer-content,
    .contact-grid {
        flex-direction: column;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-text,
    .hero-visual-container {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-visual-container {
        margin-top: 30px;
    }

    .cta-buttons {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .cta-button {
        flex: 0 0 auto;
    }

    .pricing-box {
        padding: 30px;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
        z-index: 1000;
    }

    .mobile-nav.active {
        display: block;
    }

    .mobile-nav a {
        display: block;
        color: #666;
        text-decoration: none;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }

    .mobile-nav a:hover {
        color: #217346;
    }

    header {
        position: relative;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .eula-content h1,
    .privacy-content h1,
    .requirements-content h1,
    .download-content h1,
    .contact-content h1,
    .blog-header h1,
    .post-header h1 {
        font-size: 28px;
    }

    .post-title {
        font-size: 26px;
    }

    .post-body h2 {
        font-size: 24px;
    }

    .post-body h3 {
        font-size: 20px;
    }

    .download-box {
        padding: 25px;
    }

    .version-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .download-button {
        width: 100%;
    }
}

.cta-container {
    text-align: center;
}

/* Screenshots Section */
.screenshot-section {
    margin-bottom: 60px;
}

.screenshot-section:last-of-type {
    margin-bottom: 40px;
}

.screenshot-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.screenshot-section > p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.screenshots-full-width {
    max-width: 100%;
    padding: 0 40px;
}

.screenshot-grid.screenshots-grid-full {
    max-width: 100%;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.screenshot-caption {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .screenshot-section {
        margin-bottom: 50px;
    }

    .screenshot-section h2 {
        font-size: 24px;
    }
}

/* Cheat Sheet Styles */
.cheat-sheet-image-container {
    margin: 40px 0;
    text-align: center;
}

.cheat-sheet-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cheat-sheet-image-container {
        margin: 30px 0;
    }
}