.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        

      

        .content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 30px;
            align-items: start;
        }

        .main-content {
            background: #ffffff;
            padding: 30px;
            border-radius: 10px;
            border: 1px solid #000;
        }

        .section {
            margin-bottom: 35px;
        }

        .section h2 {
            font-size: 1.8em;
            color: #000;
            margin-bottom: 20px;
            border-bottom: 3px solid #dda15a;
            padding-bottom: 10px;
        }

        .section h3 {
            font-size: 1.4em;
            color: #000;
            margin-bottom: 15px;
        }

        .section p {
            margin-bottom: 15px;
            font-size: 1.1em;
            line-height: 1.7;
        }

        .list {
            margin-bottom: 20px;
        }

        .list-item {
            background: #f8f9fa;
            color: #000;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            border-left: 4px solid #dda15a;
        }

        .highlight {
            background: #dda15a;
            color: #fff;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            text-align: center;
            border: 1px solid #bbdefb;
        }

        .highlight h3 {
            color: #fff;
            font-size: 1.6em;
            margin-bottom: 10px;
        }

        .form-container {
            background: #ffffff;
            padding: 30px;
            border-radius: 10px;
            border: 1px solid #e9ecef;
            position: sticky;
            top: 20px;
        }

        .form-container h2 {
            font-size: 1.5em;
            color: #000;
            margin-bottom: 20px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #000;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1em;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3498db;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: #dda15a;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background: #1565c0;
        }

        .minimum-investment {
            background: #e74c3c;
            color: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .form-container {
                position: static;
            }
        }