        /* Alap stílusok */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #161421;
            color: #fff;
            font-family: Arial, Helvetica, sans-serif;
            text-align: center;
            line-height: 1.6;
            padding: 20px 15px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }
        
        /* Kép stílusok */
        .hero-image {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        /* Idézet stílusok */
        .quote {
            font-size: 1.1rem;
            margin-bottom: 30px;
            padding: 0 15px;
            max-width: 940px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .quote i {
            display: block;
            margin-top: 10px;
            font-size: 0.9rem;
            color: #cccccc;
        }
        
        /* Lábléc stílusok */
        .footer {
            font-size: 0.85rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
            width: 100%;
            max-width: 900px;
        }
		
		/* Link stílusok */
.our-offset-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.our-offset-link:hover {
  color: #d3d3d3; /* világosszürke */
}
        
        /* Reszponzív beállítások */
        @media (max-width: 768px) {
            body {
                padding: 15px 10px;
            }
            
            .quote {
                font-size: 1rem;
                line-height: 1.5;
            }
            
            .footer {
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 10px 5px;
            }
            
            .quote {
                font-size: 0.9rem;
            }
            
            .footer {
                font-size: 0.75rem;
            }
        }