.content {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.content-card h1 {
	font-size: 1.5em;
	text-align: center;
	padding-bottom: 20px;
}

.content-content {
    margin-bottom: 20px;
    color: var(--dark);
}

.content-content p {
    margin-bottom: 10px;
}

        .contact-container {
			display: block;
			width: 95%;
            //display: flex;
            //flex-direction: column;
            //gap: 10px;
        }
        
        @media (min-width: 768px) {
            .contact-container {
                flex-direction: row;
            }
        }
        
        .contact-info {
            flex: 1;
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: 8px;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(41, 128, 185, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #3498db;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-method i {
            margin-right: 10px;
            color: var(--primary-color);
            font-size: 20px;
            width: 24px;
            text-align: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 767px) {
            .contact-info {
                order: 2;
                margin-top: 30px;
            }
            
            .contact-form {
                order: 1;
            }
        }