@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 1% 2% 1% 2%;
    padding: 0;
    text-align: center;
    background: linear-gradient(135deg, #f4f4f4, #e0f7fa);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background 0.5s ease;
}
header,
main,
footer {
    border-radius: 1rem;
}

header {
    background: linear-gradient(90deg, #2d6a4f, #40916c);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    width: 100px;
    position: absolute;
    left: 20px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.header-title {
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #d8f3dc;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.main-image {
    width: 60%;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    transition: box-shadow 0.5s ease;
}

.main-image:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.button-container {
    margin: 20px 0;
}

button {
    width: 210px;
    padding: 12px 24px;
    margin: 10px;
    border: none;
    background: linear-gradient(45deg, #40916c, #1b4332);
    color: white;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: linear-gradient(45deg, #1b4332, #40916c);
    transform: translateY(-3px);
}

.logos-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 15px;
    max-width: 1000px;
    width: 100%;
}

.miniLogos {
    max-width: 100px;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.miniLogos:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}


footer {
    background: linear-gradient(90deg, #40916c, #2d6a4f);
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: auto;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 80%;
    margin: 0 auto 20px;
}

.info {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.links {
    text-align: center;
    margin-top: 20px;
}

.links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: white;
    left: 0;
    bottom: -3px;
    transition: width 0.3s ease;
}

.links a:hover {
    color: #d8f3dc;
}

.links a:hover::after {
    width: 100%;
}
