html, body {
            overflow: auto !important;
            overflow-y: auto !important;
            height: auto !important;
            max-height: none !important;
            color: #2C2A29;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            padding: 0;
            margin: 0;
            background: linear-gradient(rgba(250, 248, 245, 0.88), rgba(250, 248, 245, 0.88)), 
                        url('assets/pold.webp') no-repeat center center fixed;
            background-size: cover;
        }
        
        .info-wrapper {
            padding: 20px;
            box-sizing: border-box;
            width: 100%;
        }

        .info-container {
            max-width: 700px;
            margin: 40px auto 60px auto;
            background: rgba(255, 255, 255, 0.96);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            width: 100%;
            box-sizing: border-box;
            backdrop-filter: blur(8px);
        }

        .logo-small {
            display: block;
            max-width: 240px;
            margin: 0 auto 20px auto;
        }
        
        h1 {
            color: #4F77AA;
            margin-top: 0;
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 1.3rem;
            color: #2C2A29;
            margin-top: 35px;
            border-left: 5px solid #E5A93C;
            padding-left: 15px;
            font-weight: 700;
        }

        p, li {
            line-height: 1.7;
            font-size: 1rem;
            color: #444;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 25px;
        }

        @media (max-width: 600px) {
            .contact-grid { grid-template-columns: 1fr; }
            .info-container { padding: 20px; }
        }

        .contact-card {
            background: #F8FAFC;
            padding: 20px;
            border-radius: 14px;
            border: 1px solid #EAEAEA;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .contact-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .contact-card h3 {
            margin-top: 0;
            font-size: 1.1rem;
            color: #4F77AA;
        }

        .contact-card a {
            color: #4F77AA;
            text-decoration: none;
            font-weight: 600;
            word-break: break-word;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        /* Responsiivne Google Form iframe */
        .form-container {
            width: 100%;
            margin-top: 20px;
            border-radius: 12px;
            overflow: hidden;
        }

        .form-container iframe {
            width: 100%;
            height: 860px;
            border: 0;
        }

        .disclaimer-box {
            background: #FFF5F5;
            border: 1px solid #FFDADA;
            padding: 15px;
            border-radius: 12px;
            margin-top: 30px;
            font-size: 0.88rem;
            color: #C62828;
            line-height: 1.4;
        }

        .back-btn-container {
            margin-top: 40px;
            text-align: center;
        }
        
        .back-btn {
            display: inline-block;
            padding: 14px 35px;
            background-color: #4F77AA;
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(79, 119, 170, 0.3);
        }
        
        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(79, 119, 170, 0.4);
        }

        footer {
            margin-top: 40px;
            text-align: center;
            font-size: 0.85rem;
            color: #777;
            border-top: 1px solid #EEE;
            padding-top: 20px;
        }

        footer a { color: #4F77AA; text-decoration: none; }
