header {
    color: white;
    padding-left: 150px;
    padding-right: 150px;
    margin: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body {
    background-color: rgb(37, 40, 41);
    color: white;
    font-family: 'Inter', sans-serif;
}

.centertextbox {
    text-align: center;
}

.centertextbox2 {
    text-align: center;
}

.headertextbox {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.headertextbox:hover {
    color: rgb(147, 147, 147);
    transition: 0.3s;
}

.nav-links {
    word-spacing: 10px;
}

.downloadbutton {
    background-color: rgba(70, 182, 255);
    color: white;
    transition: 0.5s;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    font-size: 20px;
}

.downloadbutton:hover {
    background-color: white;
    transition: 0.5s;
    color: black;
}

div {
    text-align: center;
    padding: 10px;
}

.container {
    display: flex;
    justify-content: center; 
    width: 100%;
    padding: 20px 0;
}

.container img {
    max-width: 100%; 
    height: auto;    
    display: block;
}

.features-section {
    background-color: #1a1c1e;
    color: white;
    padding: 80px 150px;
    font-family: 'Inter', sans-serif;
    border-radius: 10px;
}

.download-section {
    background-color: #1a1c1e;
    color: white;
    padding: 30px;
    font-family: 'Inter', sans-serif;
    border-radius: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 60px 260px;
    max-width: 1000px; 
    margin-left: auto;  
    margin-right: auto; 
    
    width: 90%;
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0a0a0;
}


@media (max-width: 1100px) {
    header {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin: 10px 0 !important;
        width: 100%;
        display: flex;
        flex-direction: column; 
        align-items: center;   
    }

    .features-grid {
        display: flex;          
        flex-direction: column; 
        align-items: center;    
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .feature-item {
        width: 300px !important;  
        max-width: 1000px;
        text-align: center;    
    }

    .downloadbutton {
    background-color: rgba(70, 182, 255);
    color: white;
    transition: 0.5s;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    font-size: 10px;
    }  
     
}

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 10px;
    overflow-x: hidden; 
}