body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px solid #00ff00;
}

.logo {
    height: 60px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav a:hover {
    color: #00ff00;
}

.hero {
    background: linear-gradient(to right, #00ff00, #000);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.nordpool, .services, .partners, .contact {
    padding: 60px 20px;
    text-align: center;
}

#nordpool-box {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
    margin-top: 20px;
    transition: background 0.5s;
}

.service-list, .partner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.service, .partner {
    background: #f9f9f9;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    width: 250px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: background 0.3s;
}

.partner:hover {
    background: #00ff00;
    color: #000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input, .contact-form textarea {
    width: 80%;
    max-width: 500px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #00ff00;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #00cc00;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.contact-info {
    padding: 60px 20px;
    text-align: center;
}

.info-block {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

.info-block p {
    margin: 10px 0;
}

.back-button {
    display: inline-block;
    padding: 12px 30px;
    background: #00ff00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.back-button:hover {
    background: #00cc00;
}

.footer-button {
    display: inline-block;
    margin-bottom: 20px;
    padding: 12px 30px;
    background: #00ff00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.3s;
}

.footer-button:hover {
    background: #00cc00;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: #00ff00;
    color: #000;
    font-weight: bold;
}

.partners {
    padding: 60px 20px;
    text-align: center;
}

.partner-banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.partner-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    background: #f9f9f9;
    border: 2px solid #00ff00;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-banner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
}

.partner-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.5);
}

/* Dalīšanās pogas fiksētā pozīcijā */
.share-menu {
    position: fixed;
    top: 45%;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.share-menu a {
    background: #00cc00;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 22px;
    transition: transform 0.3s, background 0.3s;
}

.share-menu a:hover {
    transform: scale(1.2);
    background: #007bff;
}

/* Mobilajām ierīcēm mazāki izmēri */
@media (max-width: 768px) {
    .share-menu a {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

