.hitmouse-pro-lp {
	margin: -20px 0 0 -20px;
}

.hitmouse-pro-lp * {
	box-sizing: border-box;
}

.hitmouse-pro-lp-container {
	position: relative;
	width: 100%;
	max-width: 1280px;
	padding: 0 2rem;
	margin: 0 auto;
}

.hitmouse-pro-lp-hero {
	padding: 80px 0 150px;
	background: #4375bd;
	color: #fff;
	text-align: center;
}

.hitmouse-pro-lp-hero h2 {
    color: #ffffff;
	position: relative;
	font-weight: 800;
	font-size: 64px;
	line-height: 1.2em;
	margin: 0 0 25px;
	z-index: 1;
	text-wrap: balance;
}

.hitmouse-pro-lp-hero a {
    color: #4375bd;
}

.hitmouse-pro-lp-hero p {
	font-weight: 600;
	font-size: 21px;
	line-height: 1.3em;
	color: #fff;
	margin: 0 auto 60px;
	max-width: 700px;
	text-wrap: balance;
}

.button-get-pro {
    display: inline-block;
    padding: 25px 85px;
    color: #4375bd;
    background-color: #FFE843;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    font-size: 21px;
    line-height: 1em;
    font-weight: 700;
}

.button-get-pro:hover {
    display: inline-block;
    padding: 25px 85px;   
    background-color: #fff;
}

/* Feature Section */
.hitmouse-pro-lp-features {
    background: #f9f9f9;
    padding: 60px 0;
}

.hitmouse-pro-lp-features h3 {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Standard: 3 Spalten */
    gap: 20px;
    padding: 60px 0;
}

/* Responsive: Für Tablets (Breite zwischen 768px und 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
        gap: 30px; /* Größerer Abstand für Tablets */
    }

    .feature-item {
        padding: 30px; /* Mehr Padding für Tablets */
    }

    .feature-item h4 {
        font-size: 22px; /* Größere Überschriften */
    }

    .feature-item p {
        font-size: 16px; /* Lesbare Textgröße */
    }
}

/* Responsive: Für Smartphones (Breite <= 768px) */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr; /* 1 Spalte für Smartphones */
    }
}

.feature-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #4375bd;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

