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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    height: 112px;
    background-color: #FFFFF7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 75px;
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
    padding-top: 24px
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container a {
    text-decoration: none;
    display: inline-block;
}

.logo-container img {
    width: 32px;
    height: auto;
    transition: width 0.3s ease, height 0.3s ease, top 0.3s ease;
}

.logo-container img.logo-full-size {
    width: auto;
    height: auto;
    position: relative;
    top: 38px;
}

.logo-container img.logo-shrunk {
    width: 32px;
    top: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav a {
    text-decoration: none;
    color: #666666;
    font-size: 1.1vw;
    transition: color 0.3s;
}
nav.main-page-nav a {
    color: #25438E;
}
nav a:hover,
nav a.last-click {
    color: #25438E;
}

nav a.get-now-btn {
    display: none;
}

.header-btn {
    border: 2px solid #25438E;
    background-color: #E8EEFF;
    color: #25438E;
    padding: 12px 56px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-style: normal;
    line-height: 30px;
    font-size: 20px;
    transition: background-color 0.3s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.header-btn:hover {
    background-color: #25438E;
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 150px);
    background-color: #E2E9FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}
.hero h2 {
    font-family: Fraunces;
font-weight: 700;
font-style: Italic;
font-size: 4vw;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
color: #25438E;
   margin-bottom: 20px;

}
.hero h1 {
    font-size: 4vw;
    font-weight: 700;
    color: #333333;
 

    font-family: 'Inter', sans-serif;
    line-height: 1.2em;
 
}


.hero .plain-text {
    font-family: Inter;
font-weight: 400;
font-style: Regular;
font-size: 24px;
leading-trim: NONE;
line-height: 34px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
color: #333333;
    margin-bottom: 40px;
}

.download-btn {
    background-color: #25438E;
    color: white;
    padding: 36px 160px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 40px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    transition: background-color 0.3s;
    border: 1px solid #25438E;
}

.download-btn:hover {
    background-color: white;
    color: #25438E;
}

.download-icon {
    width: 40px;
    height: auto;
    fill: white;
    transition: fill 0.3s ease;
}

.download-btn:hover .download-icon {
    fill: #FD6F2F;
}

.agreement-text {
    font-size: 0.8em;
    color: #646464CC;
    font-family: 'Inter Tight', sans-serif;
    margin: 0 auto;
}

.agreement-text a {
    color: #9b9b9b;
    text-decoration: underline;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 3px;
    font-size: 12px;
    color: #64646466;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    border: 2px solid #000;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: white;
    border-color: #E7F1AC;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 2px;
    width: 4px;
    height: 6px;
    border: solid #E7F1AC;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.dnld-button:disabled,
.dnld-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Statistics Section */
.statistics {
    height: 320px;
    background-color: #FFEBD2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    padding: 40px 20px;
    border-bottom: 1px solid #666666;
    border-top: 1px solid #666666;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 78px;
    font-weight: 700;
    color: #25438E;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #D2691E;
    line-height: 1.4;
}

/* Tools Section */
.tools-section {
    background-color: #F9FAFF;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tools-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: #333333;
    margin-bottom: 60px;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    gap: 40px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.tool-card {
    height: 400px;
    width: 360px;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #012C3D66;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tool-card.merge {
    background-color: #E7F1AC;
}

.tool-card.convert {
    background-color: #D1DAF7;
}

.tool-card.compress {
    background-color: #25438E;
}

.tool-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
}

.tool-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 30px;
}

.tool-card p {
    font-family: 'Inter-tight', sans-serif;
    font-size: 28px;
    color: #333333;
    text-align: center;
}
.tool-card.compress p, .tool-card.compress h3 {
    color: #D1DAF7
}
/* FAQ Section */
.faq-section {
    background-color: #E7F1AC;
    padding: 136px 97px;
    display: flex;
    gap: 60px;
    margin: 0 auto;
}

.faq-title {
    font-size: 64px;
    font-weight: 700;
    color: #333333;
    flex: 0.3;
}

.faq-list {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.faq-item {
    border-bottom: 1px solid #012C3D;
    border-top: 1px solid #012C3D;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 24px;

    color: #012C3D;
    font-weight: 600;
}

.faq-question:hover {
    color: #25438E;
}

.faq-icon {
    font-size: 24px;
    color: #25438E;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

/* Contact Section */
.contact-section {
    background-color: #D1DAF7;
    padding: 120px;
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
}

.contact-content {
    flex: 1;
}

.contact-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #25438E;
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: 72px;
}

.contact-content p {
    font-size: 28px;
    color: #333333;
    margin-bottom: 20px;
}

.contact-email {
    font-size: 18px;
    color: #333333;
    text-decoration: underline;
}

.contact-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

/* Footer */
footer {
    padding: 16px;
   
    background-color: #25438E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #D1DAF7;
    font-size: 14px;
    font-family: 'Inter Tight', sans-serif;
}
.footer-content {
    padding-left: 59px;
    color: #D1DAF7;
    font-size: 15px;
    align-self: flex-start;
    font-family: 'Inter', sans-serif;
}
.footer-company {
    font-size: 21px;
}
.footer-email {
    margin-top: 8px;
    font-size: 14px;

}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 12px 75px;
}
.footer-links {
    display: flex;
    text-align: left;
    gap: 40px;
}
.footer-links a {
     color: #D1DAF7;
    font-size: 14px;
    font-family: 'Inter Tight', sans-serif;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-links-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-copyright {
    margin-top: 20px;
}
/* Why Sage Section */
.why-sage-section {
    background-color: #FFFFF7;
    padding-top: 144px;
    padding-bottom: 144px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
    text-align: center;
}
.why-sage-title {
    font-family: Inter;
font-weight: 600;
font-style: Semi Bold;
font-size: 56px;
leading-trim: NONE;
line-height: 64px;
letter-spacing: -2.5%;
text-align: center;
vertical-align: middle;

}
.why-sage-text {
    font-family: Inter;
font-weight: 400;
font-style: Regular;
font-size: 26px;
leading-trim: NONE;
line-height: 34px;
letter-spacing: 0%;
vertical-align: middle;
margin-top: 16px;
}
.why-sage-grid {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    width: 100%;
   
}
.why-sage-card {
    width: 25%;
    max-width: 346px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 100px;
}

.why-sage-card p {
   font-family: Inter Tight;
font-weight: 400;
font-style: Regular;
font-size: 24px;
leading-trim: NONE;
line-height: 140%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;

}
.why-sage-card h3 {
   font-family: Alexandria;
font-weight: 600;
font-style: SemiBold;
font-size: 28px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: -1%;
text-align: center;
vertical-align: middle;


}

.get-started-section {
    background-color: #F9FAFF;
    padding-top: 144px;
    padding-bottom: 144px;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
}
.get-started-section h2 {
    font-family: Inter;
font-weight: 600;
font-style: Semi Bold;
font-size: 56px;
leading-trim: NONE;
line-height: 64px;
letter-spacing: -2.5%;
vertical-align: middle;
color: #333333;
}
.get-started-section p {
    font-family: Inter;
font-weight: 400;
font-style: Regular;
font-size: 26px;
leading-trim: NONE;
line-height: 34px;
letter-spacing: 0%;
vertical-align: middle;
color: #333333;
margin-top: 32px;
}
.get-started-section .download-btn {
    font-family: Inter;
font-weight: 700;
font-style: Bold;
font-size: 44px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: -1%;
text-align: center;
vertical-align: middle;
text-transform: capitalize;
padding: 38px 0;
width: 472px;
display: flex;
justify-content: center;
align-items: center;
}
@media (max-width: 1400px) {
     .hero {
        min-height: calc(100vh - 75px);
        padding: 80px 20px 40px;
    }
    .get-started-section .download-btn {
   
font-size: 32px;
text-align: center;
padding: 38px 0;
min-width: 300px;

}
    .why-sage-card p {
   
font-size: 18px;


}
.why-sage-card h3 {
  
font-size: 22px;


}
}
/* Responsive Design */
@media (max-width: 968px) {
    header {
        padding: 0 20px;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 14px;
    }

    .header-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    nav {
        position: static;
        transform: none;
    }

    .hero {
        min-height: calc(100vh - 75px);
        padding: 80px 20px 40px;
    }

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

    .hero .plain-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .download-btn {
        padding: 24px 80px;
        font-size: 18px;
    }

    .download-icon {
        width: 32px;
    }

    .statistics {
        gap: 40px;
        flex-wrap: wrap;
        height: auto;
        min-height: 320px;
        padding: 60px 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .faq-section {
        flex-direction: column;
        gap: 40px;
    }

    .faq-title {
        font-size: 48px;
    }

    .contact-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .tool-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 32px;
    }

    .logo-text .convert,
    .logo-text .master {
        font-size: 16px;
    }

    nav {
        gap: 10px;
        position: static;
        transform: none;
    }

    nav a {
        display: none;
    }

    .hero {
        min-height: calc(100vh - 75px);
        padding: 60px 15px 30px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero .plain-text {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .download-btn {
        padding: 18px 50px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .download-icon {
        width: 28px;
    }

    .agreement-text {
        font-size: 12px;
        padding: 0 10px;
    }

    .checkbox-container {
        font-size: 11px;
        padding: 0 10px;
    }

    .statistics {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .tool-card {
        height: auto;
        min-height: 350px;
        padding: 30px 20px;
        margin: 0 auto;
    }
}

/* Terms Page Styles */
.terms-content {
    background-color: #FFFFF7;
    color: #515839;
    min-height: calc(100vh - 140px);
    padding: 60px 20px;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-container h1 {
    font-size: 48px;
    font-weight: 700;
    color: #515839;
    margin-bottom: 10px;
    margin-top: 0;
}

.terms-container .last-updated {
    font-size: 16px;
    color: #515839;
    margin-bottom: 40px;
    opacity: 0.8;
}

.terms-container h2 {
    font-size: 28px;
    font-weight: 600;
    color: #515839;
    margin-top: 40px;
    margin-bottom: 20px;
}

.terms-container h3 {
    font-size: 22px;
    font-weight: 600;
    color: #515839;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-container p {
    font-size: 16px;
    color: #515839;
    margin-bottom: 20px;
    line-height: 1.8;
}

.terms-container ul {
    margin: 20px 0;
    padding-left: 30px;
    color: #515839;
}

.terms-container li {
    font-size: 16px;
    color: #515839;
    margin-bottom: 12px;
    line-height: 1.8;
}

.terms-container a {
    color: #0066CC;
    text-decoration: none;
}

.terms-container a:hover {
    text-decoration: underline;
}

.terms-container strong {
    font-weight: 600;
    color: #515839;
}

@media (max-width: 968px) {
    .terms-content {
        padding: 40px 20px;
    }

    .terms-container {
        max-width: 100%;
    }

    .terms-container h1 {
        font-size: 36px;
    }

    .terms-container h2 {
        font-size: 24px;
    }

    .terms-container h3 {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .terms-content {
        padding: 30px 15px;
    }

    .terms-container h1 {
        font-size: 32px;
    }

    .terms-container h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .terms-container h3 {
        font-size: 18px;
        margin-top: 25px;
    }

    .terms-container p,
    .terms-container li {
        font-size: 15px;
    }
}

/* Contact Page Styles */
.contact-inner {
    background-color: #FFFFF7;
    color: #515839;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #25438E;
    margin-bottom: 20px;
    margin-top: 0;
}

.contact-container p {
    font-size: 18px;
    color: #515839;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-email {
    font-size: 18px;
    color: #0066CC;
    text-decoration: underline;
    font-weight: 500;
}

.contact-email:hover {
    opacity: 0.8;
}

@media (max-width: 968px) {
    .contact-inner {
        padding: 40px 20px;
    }

    .contact-container h1 {
        font-size: 52px;
    }

    .contact-container p,
    .contact-email {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .contact-inner {
        padding: 40px 15px;
        min-height: calc(100vh - 140px);
    }

    .contact-container h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .contact-container p,
    .contact-email {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* Uninstall Page Styles */
.uninstall-inner {
    background-color: #FFFFF7;
    color: #515839;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.uninstall-container {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.uninstall-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #25438E;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: center;
}

.uninstall-steps {
    color: #515839;
    font-size: 18px;
    padding-left: 30px;
    margin: 0;
}

.uninstall-steps li {
    margin-bottom: 10px;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .uninstall-inner {
        padding: 40px 20px;
    }

    .uninstall-container h1 {
        font-size: 36px;
    }

    .uninstall-steps {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .uninstall-inner {
        padding: 40px 15px;
        min-height: calc(100vh - 140px);
    }

    .uninstall-container h1 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .uninstall-steps {
        font-size: 16px;
        padding-left: 25px;
    }

    .uninstall-steps li {
        margin-bottom: 15px;
    }
}

/* Goodbye Page Styles */
.goodbye-inner {
    background-color: #FFFFF7;
    color: #515839;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.goodbye-container {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.goodbye-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #25438E;
    margin-bottom: 20px;
    margin-top: 0;
}

.goodbye-container p {
    font-size: 18px;
    color: #515839;
    margin: 0;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .goodbye-inner {
        padding: 40px 20px;
    }

    .goodbye-container h1 {
        font-size: 36px;
    }

    .goodbye-container p {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .goodbye-inner {
        padding: 40px 15px;
        min-height: calc(100vh - 140px);
    }

    .goodbye-container h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .goodbye-container p {
        font-size: 16px;
    }
}

/* Thank You Page Styles */
.thankyou-inner {
    background-color: #FFFFF7;
    color: #515839;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.thankyou-container {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.thankyou-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #25438E;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 50px;
}

.thankyou-container h2 {
    font-size: 48px;
    font-weight: 700;
    color: #25438E;
    margin-bottom: 30px;
    margin-top: 0;
}

.thankyou-container p {
    font-size: 18px;
    color: #515839;
    margin-bottom: 40px;
    line-height: 1.8;
}

.open-btn {
    background-color: #25438E;
    color: white;
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.open-btn:hover {
    background-color: #040f53;
    transform: translateY(-2px);
}


@media (max-width: 968px) {
    .thankyou-inner {
        padding: 40px 20px;
    }

    .thankyou-container h1 {
        font-size: 36px;
    }

    .thankyou-container h2 {
        font-size: 42px;
    }

    .thankyou-container p {
        font-size: 17px;
    }

    .open-btn {
        font-size: 18px;
        padding: 16px 40px;
    }
}

@media (max-width: 640px) {
    .thankyou-inner {
        padding: 40px 15px;
        min-height: calc(100vh - 140px);
    }

    .thankyou-container h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .thankyou-container h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .thankyou-container p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .open-btn {
        font-size: 16px;
        padding: 14px 35px;
    }
}