/* Stili di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px 20px;
}

.logo img {
    width: 150px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #444;
    font-weight: bold;
}

.partner-logo img {
    width: 100px;
}

/* Hero section */
.hero img {
    width: 100%;
    height: auto;
}

/* Access Section */
.access-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f8f8f8;
}

.access-box {
    text-align: center;
    width: 30%;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.access-box h2 {
    color: #31708f;
    font-size:16px; /*adds sakire*/
}

.access-box p {
    margin: 10px 0;
}

.access-box img {
    width: 50px;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    background-color: #31708f;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
}

/* Info Section */
.info-section {
    padding: 40px 20px;
    text-align: center;
}

.info-section h2 {
    color: #31708f;
    margin-bottom: 20px;
}

.info-section p {
    max-width: 800px;
    margin: 0 auto;
}

/* Compatibility Section */
.compatibility-section {
    padding: 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.compatibility-section ul {
    list-style: none;
    padding: 0;
}

.compatibility-section ul li {
    margin: 10px 0;
}



/* Footer */
footer {
    background-color: #31708f;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer img {
    width: 50px;
    margin-bottom: 10px;
}

footer p {
    margin: 10px 0;
}

