body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

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

header {
    background-color: #ff4081;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin: 0 auto;
}

input[type="text"], input[type="email"], input[type="tel"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

input[type="submit"] {
    background-color: #ff4081;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #e60074;
}

.features {
    background-color: #f5f5f5;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
	width: 100%;
	text-align: center;
}

.features .feature {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-bottom: 30px;
	text-align: center;
}

.features h3 {
    font-size: 1.8em;
    color: #ff4081;
    margin-bottom: 20px;
}

.features p {
    font-size: 1.2em;
    color: #666;
}

.compatibility {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.compatibility h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
}

.compatibility p {
    font-size: 1.2em;
    color: #666;
}

footer {
    background-color: #ff4081;
    color: white;
    padding: 20px 0;
    text-align: center;
}

a {
    color: white;
}

a:hover {
    text-decoration: underline;
}
