body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    background: white;
    color: #333;
    text-align: center;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.header {
    margin: 20px 0;
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px auto;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #555;
}

.rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.rate-card {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 10px;
    background-color: #ddd;
    border-radius: 8px;
}

h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #444;
}

p {
    font-size: 14px;
    color: #666;
}

.footer {
    margin: 20px 0;
}

.footer-link {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-link .icon {
    width: 20px;
    height: 20px;
}
