@font-face {
    font-family: 'Poppins2';font-display: swap;
    src: url('https://romasolutions.pl/fonts/Poppins-Regular.ttf');
}


@font-face {
    font-family: 'Poppins2b';font-display: swap;
    src: url('https://romasolutions.pl/fonts/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'lato';font-display: swap;
    src: url('https://romasolutions.pl/fonts/Lato-Bold.ttf');
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #61a8eb 0%, #4b78a2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}



#reg-top-bb{
	position: fixed;top: 0;left: 0;
	background-color: #ffffff;
	color: black;
	font-family: 'Poppins2';font-display: swap;
	width: 100%;
	height: 90px;
	display: flex;
	justify-content: start;
	align-items: center;
	font-size: 23px;
    z-index: 80;
}

#reg-top-logo{
width: 80px;margin-right: 15px;
margin-left: 35px;height: 54px;padding-bottom: 2px;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.main-content {
  margin-top: 50px;
    padding: 60px 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.help-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.help-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}


.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
    color: #333;
}

.help-link {
    display: block;
    padding: 12px 20px;
    margin-bottom: 10px;
    background: rgba(102, 159, 234, 0.1);
    border-radius: 12px;
    color: #66aaea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.help-link:hover {
    background: rgba(102, 164, 234, 0.2);
    border-color: #66a4ea;
    transform: translateX(5px);
}


.quick-actions {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.quick-actions h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #66aaea, #4b71a2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.floating-element {
    position: fixed;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .help-section {
        padding: 20px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .header-title {
        font-size: 24px;
    }
}

.help-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.help-section:nth-child(1) { animation-delay: 0.1s; }
.help-section:nth-child(2) { animation-delay: 0.2s; }
.help-section:nth-child(3) { animation-delay: 0.3s; }
.help-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

