/*
 *   Copyright (c) 2025 Arya Zarandi - iArya
 *   All rights reserved.
 *   https://iarya.ir - Arya Zarandi - iArya - A.Zarandi
 */

        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        .page {
            width: 100%;
            min-height: 100vh;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .dark-bg {
            background-color: #111;
            color: white;
        }
        
        .light-bg {
            background-color: #f9f9f9;
        }
        
        h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            max-width: 800px;
        }
        
        ul {
            margin-left: 30px;
            margin-bottom: 30px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        .hero {
            text-align: center;
        }
        
        .hero img {
            width: 100%;
            max-width: 800px;
            height: auto;
            margin: 40px auto;
            display: block;
        }
        
        .intro-content {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .intro-text {
            flex: 1;
        }
        
        .intro-image {
            flex: 1;
        }
        
        .intro-image img {
            width: 100%;
            border-radius: 8px;
        }
        
        .service {
            margin-bottom: 60px;
        }
        
        .service img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin: 20px 0;
            border-radius: 8px;
        }
        
        .training-highlights {
            background-color: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .signature {
            font-family: cursive;
            font-size: 1.8rem;
            margin-top: 30px;
        }
        
        .footer {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #444;
        }
        
        .year {
            font-size: 1.2rem;
            margin-top: 40px;
            opacity: 0.7;
        }
    

/***/

 .tall-container {
            min-height: 700px;
        }