 @font-face {
  font-family: 'Sis-Display';
  src: url('../fonts/MatrixtypeDisplay-9MyE5.ttf') format('truetype');
}
  
        .aboutus-section {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 60vh;
            padding: 20px;
        }

        .main-container {
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .left-content {
            color: #ffffff;
        }

        .left-content h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .left-content p {
            font-size: 18px;
            color: #999;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 16px;
            color: #ccc;
        }

        .feature-list li::before {
            content: "✓";
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-container {
            width: 100%;
            padding: 40px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .contact-header p {
            font-size: 16px;
            color: #999;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-input {
            font-family: ("Sis-Display"), sans-serif;
            width: 100%;
            padding: 15px 0;
            background: transparent;
            border: none;
            border-bottom: 2px dotted rgba(255, 255, 255, 0.3);
            color: #ffffff;
            font-size: 16px;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input::placeholder {
            color: #666;
        }

        .form-input:focus {
            border-bottom: 2px dotted #ffffff;
        }

        textarea.form-input {
            resize: vertical;
            min-height: 100px;
            padding-top: 15px;
        }

        .submit-button {
            width: 100%;
            padding: 16px;
            background: #ffffff;
            color: #000000;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .submit-button:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .submit-button:active {
            transform: scale(0.98);
        }

        .icon {
            font-size: 18px;
        }

        @media (max-width: 968px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .left-content h1 {
                font-size: 42px;
            }

            .left-content {
                text-align: center;
            }

            .feature-list li {
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .contact-container {
                padding: 30px 20px;
            }

            .contact-header h2 {
                font-size: 28px;
            }

            .left-content h1 {
                font-size: 36px;
            }
        }