/* styles.css */
@font-face {
          font-family: 'Graphik Regular';
          src: url('assets/Graphik-Regular-Web.woff2') format('woff2'), url('assets/Graphik-Regular-Web.woff') format('woff'), url('assets/Graphik-Regular-Web.ttf') format('truetype');

          font-weight: normal;
          font-style: normal;
        }

@font-face {
          font-family: 'Graphik Semibold';
          src: url('assets/Graphik-Semibold-Web.woff2') format('woff2'), url('assets/Graphik-Semibold-Web.woff') format('woff'), url('assets/Graphik-Semibold-Web.ttf') format('truetype');

          font-weight: normal;
          font-style: normal;
        }

body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #222;
    font-family: 'Graphik Regular', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

a {
    color: #007acc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    /* border-radius: 8px; */
}

.logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.logos img {
    height: 120px;
    width: auto;
    margin-bottom: 0;
}

/* Mobile CSS - tablets and smaller */
@media (max-width: 768px) {
    .logos {
        margin-top: 20px;
    }
    
    .logos img {
        height: 80px;
    }
}

/* Mobile CSS - phones */
@media (max-width: 480px) {
    .container {
        margin: 0px auto;
        padding: 20px;
    }
    .logos {
        margin-top: 15px;
    }
    
    .logos img {
        height: 60px;
    }
}