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

.hero {
    background: linear-gradient(to right, #0c1443, #1d2e39);
    padding-top: 5px;
    text-align: center;
    display: flex;
    align-items: center;
}

.hero h1 {
    color: #f1c40f;
    font-size: 2.2em;
    
    margin: 0 auto;
    width: 45%;
    
    
    letter-spacing: 2px;
    text-align: end;
    
}

.hero p {
    color: white;
    font-size: 2.2em;
    margin: 0;
    line-height: 1.6;
    width: 49%;
    text-align:start;
    margin-left: 1%;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2em;
    color: #af8e0c;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.content {
    line-height: 1.8;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
}

.values {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.value-card {
    flex: 1 1 30%;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #af8e0c;
}

.value-card p {
    font-size: 1em;
    color: #555;
}

.back-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007BFF;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    margin: 30px auto 0;
    transition: 0.3s ease;
    text-align: center;
    width: fit-content;
}

.back-btn:hover {
    background: #0056b3;
}
a{
    color: #f1c40f; 
    text-decoration: none; 
    font-weight: bold;
}
@media only screen and (max-width:600px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1.8em;
        line-height: 1.6;
    }
    .container p{
        font-size: 1.8em;
        text-align: center;
    }
    .container h2{
        text-align: center;
    }
    .value-card h3{
        font-size: 1.8em;
    }
    .contact{
        width: 100%;
        justify-content: center;
    }
    .contact i{
        padding-inline: 10px;
    }
    .contact a{
        font-size: .95em;
    }
    #Contacts{
        text-align: start;
    }
}