/* Override global container limits to strictly constrain to 1360px maximum */
@media (min-width: 1600px) {
    .container {
        max-width: 1360px !important;
    }
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7f9 0%, #e2eaf4 100%);
    text-align: center;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0b2239;
    margin-bottom: 24px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5c6d;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.btn-primary-custom {
    background-color: #0066ff;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
    border: 2px solid #0066ff;
}
.btn-primary-custom:hover {
    background-color: #0052cc;
    border-color: #0052cc;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}
.btn-secondary-custom {
    background-color: white;
    color: #0b2239;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid #cfd9e4;
}
.btn-secondary-custom:hover {
    background-color: #f8fafe;
    border-color: #0066ff;
    color: #0066ff;
    transform: translateY(-2px);
    text-decoration: none;
}
.buttons-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}
.hero-text-link {
    font-size: 1.1rem;
    color: #0066ff;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.hero-text-link:hover {
    color: #0052cc;
}
.search-container-nav {
    max-width: 350px;
    width: 100%;
    margin-left: 20px;
}
.search-form {
    display: flex;
    background: #f1f4f8;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #dfe6ef;
    transition: border-color 0.3s;
}
.search-form:focus-within {
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}
.search-input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
}
.search-btn {
    border: none;
    background: transparent;
    padding: 0 20px;
    cursor: pointer;
    color: #0066ff;
}
.navbarMainContent {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px 0;
}
.feature-box {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #2c3e50;
    font-weight: 600;
}
.feature-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Windows Versions Section Styles */
.windows-versions-section {
    padding: 80px 0;
    background-color: #fff;
}
.section-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b2239;
    text-align: center;
    margin-bottom: 20px;
}
.section-intro-text {
    font-size: 1.1rem;
    color: #4a5c6d;
    margin: 0 auto 50px;
    line-height: 1.8;
    max-width: 800px;
}
.intro-benefits-list {
    text-align: left;
    display: inline-block;
    margin-top: 15px;
    padding-left: 20px;
    font-weight: 500;
}
.intro-benefits-list li {
    margin-bottom: 8px;
    list-style-type: disc;
}
.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}
.version-card {
    background: #fdfdfd;
    border: 1px solid #eaedf1;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.version-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.version-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eaedf1;
}
.version-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2239;
    margin-bottom: 10px;
}
.version-meta {
    font-size: 1rem;
    color: #66788a;
}
.version-meta strong {
    color: #2c3e50;
    font-weight: 600;
}
.btn-download-link {
    background-color: #0066ff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
}
.btn-download-link:hover {
    background-color: #0052cc;
    color: white;
    text-decoration: none;
}
.sys-req-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b2239;
    margin-bottom: 15px;
}
.sys-req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sys-req-list li {
    font-size: 0.95rem;
    color: #4a5c6d;
    position: relative;
    padding-left: 15px;
}
.sys-req-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066ff;
    font-weight: bold;
}
.old-windows-block {
    background: #f8fafe;
    border: 1px dashed #cfd9e4;
    text-align: center;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}
.old-windows-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b2239;
    margin-bottom: 15px;
}
.old-windows-block p {
    color: #4a5c6d;
    font-size: 1.05rem;
    margin: 0 auto 25px;
    max-width: 700px;
}
.text-link-standard {
    font-size: 1.05rem;
    color: #0b2239;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s;
}
.text-link-standard:hover {
    color: #0066ff;
}
.version-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.old-version-image {
    width: 80px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Why Use Us Section Premium Design */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafe 0%, #ffffff 100%);
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}
.why-us-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(11, 34, 57, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00cc66);
    opacity: 0;
    transition: opacity 0.3s;
}
.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(11, 34, 57, 0.1);
}
.why-us-card:hover::before {
    opacity: 1;
}
.why-us-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.08);
    color: #0066ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.why-us-icon-wrapper svg {
    width: 32px;
    height: 32px;
}
.why-us-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b2239;
    margin-bottom: 16px;
}
.why-us-card p {
    font-size: 1.05rem;
    color: #4a5c6d;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* DiskGeeker Showcase Section */
.diskgeeker-section {
    padding: 100px 0;
    background-color: #fff;
}
.diskgeeker-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.diskgeeker-content {
    flex: 1;
}
.diskgeeker-image {
    flex: 1;
    text-align: center;
}
.diskgeeker-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.diskgeeker-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b2239;
    margin-bottom: 24px;
    line-height: 1.3;
}
.diskgeeker-desc {
    font-size: 1.15rem;
    color: #4a5c6d;
    margin-bottom: 30px;
    line-height: 1.6;
}
.diskgeeker-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.diskgeeker-steps li {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.diskgeeker-steps li::before {
    content: "✓";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background: #00cc66;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 12px;
}
.diskgeeker-seamless {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0b2239;
    margin-bottom: 35px;
}
.diskgeeker-explore {
    display: inline-block;
    margin-left: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0066ff;
    text-decoration: none;
    transition: color 0.3s;
}
.diskgeeker-explore:hover {
    color: #0052cc;
    text-decoration: underline;
}
.diskgeeker-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
@media (max-width: 991px) {
    .diskgeeker-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8fafe;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #eaedf1;
    margin-bottom: 20px;
}
.faq-item .faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b2239;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.faq-item .faq-question::before {
    content: "Q:";
    color: #0066ff;
    font-weight: 800;
    margin-right: 12px;
    flex-shrink: 0;
}
.faq-item .faq-answer {
    font-size: 1.05rem;
    color: #4a5c6d;
    line-height: 1.6;
    margin-bottom: 0;
    margin-left: 32px;
}

/* Footer Section */
.footer-section {
    background-color: #0b2239;
    color: #fff;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-column h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
    color: #8da2b5;
    font-size: 1rem;
}
.footer-links a {
    color: #8da2b5;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #00cc66;
    text-decoration: none;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    flex: 1;
    min-width: 250px;
}
.footer-disclaimer {
    color: #8da2b5;
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 2;
    min-width: 300px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #0066ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.back-to-top svg {
    width: 24px;
    height: 24px;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: #0052cc;
    color: #fff;
    transform: translateY(-3px);
}
