:root {
            --primary-bg: #f5f5f5;
            --card-bg: #ffffff;
            --accent-green: #f0f9e8;
            --accent-red: #fdf2f2;
            --text-dark: #333333;
            --text-gray: rgba(75, 78, 86, 1);
            --border-color: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--primary-bg);
        }

        .container {
            position: relative;
            
            max-width: 1180px;
            margin: 0 auto;
            padding: 20px;
        }

        .container--1320 {
            position: relative;
        
            max-width: 1320px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            background: linear-gradient(180deg, rgba(221, 246, 247, 0.1) 0%, #DDF6F7 100%);
            padding: 140px 20px;
            margin-bottom: 30px;
        }
        
        .header__wrapper {
            text-align: left;
        }

        h1 {
            display: block;
            max-width: 800px;
            
            font-size: 65px;
            line-height: 110%;
            font-weight: 700;
            margin-bottom: 15px;
            color: rgba(32, 28, 28, 1);
        }

        .subtitle {
            display: block;
            max-width: 800px;
            
            font-size: 22px;
            line-height: 140%;
            color: var(--text-gray);
            
            margin: 0;
        }

        .section {
            background-color: var(--card-bg);
            border-radius: 50px;
            padding: 60px;
            margin-bottom: 30px;
        }

        h2 {
            font-size: 45px;
            font-weight: 700;
            line-height: 110%;
            margin-bottom: 15px;
            color: rgba(32, 28, 28, 1);
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        p {
            margin-bottom: 15px;
            color: var(--text-gray);
            
            font-weight: 400;
            font-size: 22px;
            line-height: 150%;
        }

        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        ol {
            font-weight: 400;
            font-size: 22px;
            line-height: 150%;
            
            margin: 15px 40px;
        }

        li {
            margin-bottom: 5px;
        }

        .company-card {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .company-info {
            flex: 1;
            
            font-weight: 400;
            font-size: 20px;
            line-height: 130%;
        }

        .company-image {
            max-width: 540px;
            width: 100%;
			
			    background: rgba(245, 245, 245, 1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
        }

        .company-image img {
            width: 100%;
            height: auto;
            display: block;
            
            border-radius: 10px;
        }

        .contact-info {
            display: flex;
            gap: 30px;
            padding: 16px 36px 26px 36px;
            border-radius: 10px;
            overflow: hidden;
            
        }
        
        .contact-info a {
            color: #7c7474;
            text-decoration: none;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
            
            font-weight: 400;
            font-size: 18px;
            line-height: 110%;
        }

        .contact-label {
            font-family: Inter Tight;
            font-weight: 600;
            font-size: 16px;
            line-height: 110%;
        }

        .pros-cons-container {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .pros, .cons {
            flex: 1;
            padding: 40px;
            border-radius: 8px;
        }

        .pros {
            background-color: var(--accent-green);
            border: 1px solid #d0e9c6;
        }

        .cons {
            background-color: var(--accent-red);
            border: 1px solid #f9d6d6;
        }

        .pros h4, .cons h4 {
            font-size: 20px;
            font-weight: 700;
            line-height: 140%;
            margin-bottom: 10px;
            color: #333;
        }

        .pros ul, .cons ul {
            padding-left: 20px;
            
            font-weight: 400;
            font-size: 20px;
            line-height: 140%;
        }

        .conclusion {
            background: none;
            padding-top: 40px;
        }

        @media (max-width: 768px) {
            .company-card {
                flex-direction: column;
            }
            
            .company-image {
                width: 100%;
            }
            
            .pros-cons-container {
                flex-direction: column;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }

        /* Placeholder images - in a real project, replace with actual images */
        .placeholder-img {
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            text-align: center;
            padding: 20px;
        }

        .placeholder-img::before {
            content: "Company Screenshot";
            font-size: 1.2rem;
        }
        
        .intro__wrapper {
            position: relative;
            margin-top: -150px;
        }
        
        .list__wrapper {
            padding: 65px 70px;
        }
        
        .list__wrapper h2 {
            font-weight: 700;
            font-size: clamp(22px, 2.2vw, 45px);
            line-height: 110%;
            margin: 0 0 20px;
        }
        
        .list__wrapper h3 {
            font-weight: 700;
            font-size: 20px;
            line-height: 130%;;
        }
        
    .intro__wrapper a {
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #000;
    }
    
    .intro__wrapper a:hover {
        border-bottom: 1px solid transparent;
    }
    
    @media (max-width: 500px) {
        .list__wrapper {
            padding: 25px;
        }
        .contact-info {
            flex-direction: column;
        }
        header {
            padding: 40px 20px 140px 20px;
        }
    }