		:root {
			--primary-color: #4b6f66;        /* nyugodt zöldes-lila */
			--primary-dark: #2f3f3b;
			--primary-light: #6f8f87;

			--secondary-color: #c47a3f;      /* meleg, nem agresszív */
			--secondary-dark: #a7632f;
			--secondary-light: #d99a63;

			--accent-color: #8fa8a3;

			--text-dark: #2e2e38;
			--text-light: #6a6a78;

			--light-bg: #f6f7f8;
			--white: #ffffff;

			--shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
			--shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.12);

			--gradient-primary: linear-gradient(135deg, #4b6f66 0%, #6f8f87 100%);
			--gradient-secondary: linear-gradient(135deg, #c47a3f 0%, #d99a63 100%);

			--border-radius: 18px;
			--transition: all 0.35s ease;
		}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 3.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }
        
        h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }
        
        h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        strong {
            color: var(--secondary-color);
            font-weight: 700;
			font-size: 20px;
        }
        
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--secondary-dark);
        }
        
        .btn {
            display: inline-block;
            background: var(--gradient-secondary);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            text-align: center;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            color: white;
        }
        
        .btn-primary {

        }
        
        .btn-primary:hover {
            background: var(--primary-color);
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0 80px;
            background: linear-gradient(135deg, #f8f7fc 0%, #f0edf9 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74, 44, 122, 0.08) 0%, rgba(74, 44, 122, 0) 70%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .hero-text {
            flex: 1;
            max-width: 600px;
        }
        
        .hero-image {
            flex: 1;
            max-width: 500px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(-10deg);
            transition: var(--transition);
        }
        
        .hero-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 30px 0;
            line-height: 1.4;
        }
        
        .hero-date {
            background: white;
            display: inline-block;
            padding: 20px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 30px 0;
            border-left: 5px solid var(--secondary-color);
        }
        
        .hero-date h3 {
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .hero-date p {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Counter */
        .countdown {
            margin: 40px 0;
        }
        
        .countdown-message {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .countdown-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            max-width: 500px;
        }
        
        .countdown-item {
            background: white;
            border-radius: 12px;
            padding: 15px;
            min-width: 80px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        
        .countdown-item:hover {
            transform: translateY(-5px);
        }
        
        .countdown-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }
        
        /* Sections */
        .section {
            padding: 100px 0;
        }
        
        .section-dark {
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .section-dark h2, .section-dark h3 {
            color: white;
        }
        
        .section-dark p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .section-dark::before {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 Q50,100 100,0 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: contain;
            opacity: 0.5;
            z-index: 1;
        }
        
        .section-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .section-title-center {
            text-align: center;
        }
        
        .section-title-center h1::after, .section-title-center h2::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Two Columns */
        .two-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 50px;
        }
        
        .column {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .column:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        /* Lists */
        .styled-list {
            list-style: none;
            margin: 25px 0;
        }
        
        .styled-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .styled-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        /* Testimonial */
        .testimonial {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            margin: 40px 0;
            box-shadow: var(--shadow);
            border-left: 8px solid var(--secondary-color);
            position: relative;
        }
        
        .testimonial::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 5rem;
            color: var(--secondary-color);
            font-family: serif;
            opacity: 0.3;
        }
        
        .testimonial p {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary-dark);
            line-height: 1.6;
        }
        
        /* Registration Section */
        .registration-section {
            background: linear-gradient(135deg, #f8f7fc 0%, #f0edf9 100%);
        }
        
        .registration-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: start;
        }
        
        .event-info {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .info-item {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .info-item h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-item p {
            font-size: 1.2rem;
            color: var(--primary-dark);
        }
        
        .logo-container {
            text-align: center;
            margin-top: 40px;
        }
        
        .logo-container img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: var(--shadow);
        }
        
        /* Form */
        .registration-form {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .form-label.required::after {
            content: ' *';
            color: var(--secondary-color);
        }
        
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e6e6e6;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(74, 44, 122, 0.1);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 25px 0;
        }
        
        .checkbox-group input {
            margin-top: 5px;
            accent-color: var(--primary-color);
        }
        
        .checkbox-group label {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.5;
        }
        
        .form-submit {
            width: 100%;
            padding: 18px;
            font-size: 1.2rem;
        }
        
        /* Footer */
        .footer {
            background: var(--gradient-primary);
            color: white;
            padding: 60px 0 30px;
            text-align: center;
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                max-width: 100%;
            }
            
            .hero-image {
                max-width: 100%;
                transform: none;
            }
            
            .hero-image:hover {
                transform: translateY(-10px);
            }
            
            h1::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 70px 0;
            }
            
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
            
            .countdown-container {
                flex-wrap: wrap;
            }
            
            .two-columns {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .column, .registration-form, .event-info, .testimonial {
                padding: 30px 20px;
            }
        }
        
        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .motivacios-valasz {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: translateY(30px);
            transition: transform 0.5s ease;
        }
        
        .modal-overlay.active .motivacios-valasz {
            transform: translateY(0);
        }
        
        .motivacios-valasz h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .motivacios-valasz p {
            font-size: 1.2rem;
            color: var(--text-dark);
            text-align: center;
            line-height: 1.6;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .close-modal:hover {
            color: var(--secondary-color);
        }
		
		/* ===== KAPCSOLATOK OLDAL SPECIFIKUS STÍLUSOK ===== */

/* Általános finomítások */
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.container {
    position: relative;
}

/* Hero Section Enhancement */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, 
        rgba(75, 111, 102, 0.05) 0%, 
        rgba(106, 153, 142, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(196, 122, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(75, 111, 102, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hero h1::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 1.5rem 0;
    line-height: 1.4;
    font-weight: 600;
}

.hero-date {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    margin: 2.5rem 0;
}

.hero-date h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.hero-date p {
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-date i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Enhanced Countdown */
.countdown {
    margin: 3rem 0;
}

.countdown-message {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.countdown-container {
    gap: 20px;
}

.countdown-item {
    background: linear-gradient(135deg, white, #f8f9fa);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 25px 15px;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.countdown-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 8px;
}

/* Enhanced Sections */
.section {
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, #5a9485 0%, #1b3836 100%);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
}

/* Enhanced Columns */
.column {
    background: linear-gradient(135deg, white, #fafafa);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.column:hover::before {
    transform: translateX(0);
}

.column:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Enhanced List */
.styled-list {
    margin: 2rem 0;
}

.styled-list li {
    padding-left: 45px;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    position: relative;
}

.styled-list li::before {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(196, 122, 63, 0.3);
    transition: all 0.3s ease;
}

.styled-list li:hover::before {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(196, 122, 63, 0.4);
}

/* Enhanced Testimonial */
.testimonial {
    position: relative;
    background: linear-gradient(135deg, white, #fafafa);
    border-left: 8px solid var(--secondary-color);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    margin: 3rem 0;
    padding: 3rem;
}

.testimonial::before {
    top: -30px;
    left: 40px;
    font-size: 6rem;
    opacity: 0.2;
}

.testimonial p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

/* Enhanced Registration Section */
.registration-section {
    background: linear-gradient(135deg, 
        rgba(248, 247, 252, 0.8) 0%, 
        rgba(240, 237, 249, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(75, 111, 102, 0.1) 0%, 
        rgba(75, 111, 102, 0) 70%);
    border-radius: 50%;
}

.event-info, .registration-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.info-item {
    position: relative;
    padding-left: 60px;
}

.info-item i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    color: var(--secondary-color);
    background: rgba(196, 122, 63, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    margin-left: 10px;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.info-item p {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Enhanced Form */
.form-input, .form-textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 18px;
}

.form-input:focus, .form-textarea:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(75, 111, 102, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.form-submit {
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.form-submit:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(196, 122, 63, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.form-submit:hover::before {
    left: 100%;
}

/* Enhanced Logo Container */
.logo-container img {
    width: 150px;
    height: 150px;
    border: 5px solid white;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.logo-container img:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Enhanced Modal */
.motivacios-valasz {
    background: linear-gradient(135deg, white, #fafafa);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 50px;
}

.motivacios-valasz h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.motivacios-valasz p {
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Floating Animation for Images */
.hero-image {
    animation: float 6s ease-in-out infinite;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: perspective(1000px) rotateY(-10deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-10deg) translateY(-20px);
    }
}

/* Text Emphasis */
strong {
    position: relative;
    display: inline-block;
}

strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    opacity: 0.3;
    border-radius: 2px;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        min-width: 85px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .info-item {
        padding-left: 50px;
    }
    
    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 20px 10px;
    }
    
    .countdown-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 15px 8px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .styled-list li {
        padding-left: 40px;
        font-size: 1.1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-image,
    .countdown,
    .registration-form,
    .modal-overlay,
    .btn {
        display: none !important;
    }
    
    .section {
        padding: 30px 0 !important;
    }
}
.fa-map:before {
    content: "" !important;
}
