        .appointment-section {
            padding: 90px 0 45px;
            background-color: #F3F2ED;
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
        }
        
        .appointment-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .appointment-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            gap: 40px;
        }
        
        .appointment-info {
            flex: 1;
            min-width: 300px;
            background-color: #50BBE7;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(80, 187, 231, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: #FFF;
        }
        
        .appointment-header {
            margin-bottom: 30px;
        }
        
        .appointment-header h2 {
            font-size: 32px;
            color: #FFF;
            line-height: 1.2;
            font-weight: 700;
            margin: 0;
        }
        
        .appointment-features {
            margin-bottom: 30px;
        }
        
        .appointment-features ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .appointment-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
            padding: 10px 0px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .appointment-feature:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        
        .feature-icon {
            flex-shrink: 0;
            margin-right: 15px;
            width: 50px;
            height: 50px;
            background-color: #FFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feature-icon i {
            color: #50BBE7;
            font-size: 20px;
        }
        
        .feature-text {
            font-size: 16px;
            color: #FFF;
            font-weight: 500;
            margin: 0;
        }
        
        .appointment-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            background-color: #FF6F64;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(255, 111, 100, 0.3);
            width: 100%;
            max-width: 250px;
        }
        
        .appointment-btn:hover {
            background-color: #e55a50;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 111, 100, 0.4);
        }
        
        .appointment-btn:active {
            transform: translateY(0);
        }
        
        .appointment-visual {
            flex: 1;
            min-width: 300px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f0f0;
            min-height: 400px;
        }
        
        .appointment-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Адаптивность для планшетов */
        @media (max-width: 768px) {
            .appointment-section {
                padding: 60px 0 30px;
            }
            
			.appointment-feature {
                flex-direction: row;
                align-items: center;
            }
			
            .appointment-header h2 {
                font-size: 28px;
            }
            
            .appointment-wrapper {
                flex-direction: column;
            }
            
            .appointment-info, .appointment-visual {
                width: 100%;
            }
            
            .appointment-info {
                padding: 30px;
            }
            
            .appointment-visual {
                min-height: 350px;
            }
            .feature-icon {
                margin-bottom: 10px;
				width: 35px;
            	height: 35px;
            }			
        }
        
        /* Адаптивность для мобильных */
        @media (max-width: 480px) {
            .appointment-section {
                padding: 40px 0 20px;
            }
            
            .appointment-header h2 {
                font-size: 24px;
            }
            
            .appointment-feature {
                flex-direction: row;
                align-items: center;
            }
            
            .feature-icon {
                margin-bottom: 10px;
				width: 35px;
            	height: 35px;
            }
            
            .appointment-btn {
                width: 100%;
                max-width: none;
            }
            
            .appointment-info {
                padding: 20px;
            }
            
            .appointment-visual {
                min-height: 250px;
            }
        }