        :root {
            --tim-black: #1d1d1f;
            --tim-dark-text: #f5f5f7;
            --tim-light-bg: #f5f5f7;
            --tim-white-bg: #ffffff;
            --tim-link-blue: #0071e3;
            --tim-link-hover: #147ce5;
            --font-stack: 'SF Pro Display', -tim-system, BlinkMacSystemFont, sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: var(--font-stack); background-color: var(--tim-white-bg); color: var(--tim-black); -webkit-font-smoothing: antialiased; }

        .tim-nav { position: fixed; top: 0; width: 100%; height: 48px; background: rgba(255, 255, 255, 0.8); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); z-index: 9999; border-bottom: 1px solid #d2d2d7; }
        .nav-container { max-width: 1024px; height: 100%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 22px; }
        
        .brand-wrapper { display: flex; align-items: center; gap: 6px; text-decoration: none; color: var(--tim-black); }
        .brand-icon { width: 18px; height: 18px; fill: currentColor; }
        .nav-logo { font-weight: 600; font-size: 15px; letter-spacing: -0.2px; }
        
        .nav-links { display: flex; list-style: none; gap: 30px; }
        .nav-links a { color: #515154; text-decoration: none; font-size: 12px; font-weight: 400; transition: color 0.3s ease; }
        .nav-links a:hover { color: var(--tim-black); }
        .lang-selector { background: transparent; color: #515154; border: 1px solid rgba(0,0,0,0.15); font-size: 11px; padding: 2px 6px; border-radius: 4px; cursor: pointer; outline: none; }

        main { padding-top: 48px; background-color: #ffffff; }

        .section-block { width: 100%; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; padding: 80px 20px; overflow: hidden; background-position: center; background-size: cover; background-repeat: no-repeat; text-decoration: none; color: inherit; }
        .block-full-width { height: 75vh; min-height: 520px; margin-bottom: 12px; }
        
        .section-block.clickable-block { cursor: pointer; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
        .section-block.clickable-block:hover { transform: scale(1.001); }

        .content-container { max-width: 800px; margin-top: 20px; z-index: 2; }
        
        .overline-text { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 10px; text-transform: uppercase; }
        .title-text { font-size: 56px; font-weight: 700; letter-spacing: -1.2px; line-height: 1.07; margin-bottom: 14px; }
        .subtitle-text { font-size: 24px; font-weight: 400; letter-spacing: 0.5px; margin-bottom: 28px; line-height: 1.33; }
        
        @media (max-width: 768px) { .title-text { font-size: 38px; } .subtitle-text { font-size: 20px; } }

        .cta-wrapper { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 3; }
        
        .cta-btn { font-size: 14px; font-weight: 400; padding: 8px 16px; border-radius: 980px; text-decoration: none; display: inline-flex; align-items: center; transition: all 0.2s ease; cursor: pointer; border: 1px solid transparent; }
        
        .cta-btn-primary { background-color: var(--tim-link-blue); color: #ffffff; }
        .cta-btn-primary:hover { background-color: var(--tim-link-hover); }
        
        .cta-btn-secondary { background-color: transparent; color: var(--tim-link-blue); border-color: var(--tim-link-blue); }
        .cta-btn-secondary:hover { background-color: var(--tim-link-blue); color: #ffffff; }
        
        .grid-block[style*="background-color: #000000"] .cta-btn-secondary,
        .section-block[style*="background-color: #000000"] .cta-btn-secondary { color: #ffffff; border-color: #ffffff; }
        .grid-block[style*="background-color: #000000"] .cta-btn-secondary:hover,
        .section-block[style*="background-color: #000000"] .cta-btn-secondary:hover { background-color: #ffffff; color: var(--tim-black); }

        .grid-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 12px 12px 12px; background-color: #ffffff; }
        @media (max-width: 768px) { .grid-container { grid-template-columns: 1fr; padding: 0; gap: 12px; } }
        .grid-block { height: 540px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 60px 20px; text-align: center; background-position: center; background-size: cover; background-repeat: no-repeat; text-decoration: none; color: inherit; }
        .grid-block.clickable-block { cursor: pointer; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
        .grid-block.clickable-block:hover { transform: scale(1.001); }
        .grid-block .title-text { font-size: 40px; letter-spacing: -0.8px; }
        .grid-block .subtitle-text { font-size: 19px; }

        footer { background-color: var(--tim-light-bg); color: #86868b; font-size: 12px; padding: 40px 22px; margin-top: 20px; }
        .footer-container { max-width: 1024px; margin: 0 auto; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #d2d2d7; padding-bottom: 15px; }
        .footer-links a { color: #515154; text-decoration: none; }
        .footer-links a:hover { text-decoration: underline; color: var(--tim-black); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
		
		.nav-logo { display: inline-block;}
		@media (max-width: 480px ) { .nav-logo { display: none !important; } }
		
        .support-hero { background-color: var(--apple-white-bg); text-align: center; padding: 80px 20px 50px 20px; border-bottom: 1px solid #d2d2d7; }
        .hero-title { font-size: 48px; font-weight: 700; letter-spacing: -1.2px; color: var(--apple-black); margin-bottom: 12px; }
        .hero-subtitle { font-size: 21px; font-weight: 400; color: #86868b; max-width: 600px; margin: 0 auto; line-height: 1.4; }

        .support-container { max-width: 720px; margin: 0 auto; padding: 60px 22px; }
        .section-title { font-size: 28px; font-weight: 600; letter-spacing: -0.5px; margin-bottom: 32px; color: var(--apple-black); }

        .faq-item { border-bottom: 1px solid #d2d2d7; padding: 24px 0; }
        .faq-question { font-size: 19px; font-weight: 500; color: var(--apple-black); display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
        .faq-icon { font-size: 22px; color: #86868b; font-weight: 300; transition: transform 0.3s ease; transform-origin: center; line-height: 1; }
        
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1), padding-top: 0.3s ease; font-size: 16px; line-height: 1.5; color: #515154; padding-right: 30px; }
        
        .faq-item.active .faq-icon { transform: rotate(45px); color: var(--apple-black); }
        .faq-item.active .faq-answer { max-height: 200px; padding-top: 14px; }
