body {
    margin: 0;
    font-family: sans-serif;
    background: linear-gradient(135deg, #200b00, #612900);
    color: #f3d569;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    width: 80%; /* Wyrównane z .sections i .contract-section */
    max-width: 1200px; /* Maksymalna szerokość taka sama jak w innych sekcjach */
    text-align: center;
    padding: 20px 0;
    margin: 0 auto; /* Wyśrodkowanie */
    box-sizing: border-box;
}

.logo-container img {
    width: 100%; /* Logo wypełnia kontener */
    max-width: 100%; /* Nie przekracza szerokości kontenera */
    height: auto;
    border-radius: 15px; /* Zaokrąglone rogi */
    box-shadow: 0 0 20px rgba(243, 213, 105, 0.5); /* Złoty cień */
    transition: transform 0.3s ease; /* Płynna animacja */
}

.logo-container img:hover {
    transform: scale(1.05); /* Lekkie powiększenie przy najechaniu */
}

.video-container {
    width: 80%;
    max-width: 800px;
    margin: 20px 0;
}

video {
    width: 100%;
    border: 4px solid #f3d569;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 80%;
    max-width: 1200px;
    margin-bottom: 40px;
}

.section {
    background: rgba(97, 41, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.section h2 {
    margin-top: 0;
    color: #f3d569;
}

.image-section img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.contract-section {
    background: rgba(97, 41, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 1200px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.contract-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2em;
    margin-top: 10px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #f3d569;
    color: #200b00;
    font-weight: bold;
    transition: background 0.3s ease;
}

button:hover {
    background: #e0c256;
}

.tooltip {
    visibility: hidden;
    background-color: #612900;
    color: #f3d569;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9em;
}

.tooltip.show {
    visibility: visible;
    opacity: 1;
}

.social {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.social img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social img:hover {
    transform: scale(1.1);
}