         .calkul-module * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

         .calkul-module {
            font-family: 'Jost Medium', 'Arial', sans-serif;
            background: transparent;
        }

         .calkul-module .module-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

         .calkul-module .calkul-section {
             display: flex;
            align-items: center;
            justify-content: center;
			padding-top: 40px;
			padding-bottom: 20px;
            background: transparent;
        }

         .calkul-module .animate-item {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            text-align: center;
        }

         .calkul-module .animate-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

         .calkul-module .calkul-title {
            font-size: 44px;
            margin-bottom: 20px;
            color: rgb(43, 65, 157, 1);
            font-weight: normal;
            line-height: 1.2;
        }

         .calkul-module .calkul-text {
            font-size: 20px;
            max-width: 600px;
            margin: 0 auto;
            color: #333;
            line-height: 1.5;
        }

         .calkul-module .calkul-btn {
            display: inline-block;
            padding: 15px 30px;
            background: #0066A4;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            margin-top: 30px;
            transition: transform 0.3s, background 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-family: inherit;
        }

        .calkul-module .calkul-btn:hover {
            transform: scale(1.05);
            background: #005088;
        }

         @media (max-width: 768px) {
            .calkul-module .calkul-title {
                font-size: 22px;
            }
            
            .calkul-module .calkul-text {
                font-size: 18px;
                padding: 0 15px;
            }
            
            .calkul-module .calkul-section {
			padding-top: 60px;
			padding-bottom: 30px;
             }
        }
