* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.fonda-section {
padding: 80px 20px;
}
.fonda-container {
max-width: 1200px;
margin: 0 auto;
}
.hero-section {
text-align: center;
color: white;
margin-bottom: 60px;
}
.hero-section h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-section p {
font-size: 1.2rem;
opacity: 0.9;
max-width: 600px;
margin: 0 auto;
}
.fonda-grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 80px;
}
.fonda-card {
background: white;
border-radius: 12px;
padding: 40px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
backdrop-filter: blur(10px);
}
.contact-info h3 {
font-size: 1.8rem;
margin-bottom: 30px;
color: #333;
}
.contact-item {
display: flex;
align-items: center;
margin-bottom: 25px;
padding: 15px;
border-radius: 8px;
background: #f8f9fa;
}
.contact-item .icon {
width: 24px;
height: 24px;
margin-right: 15px;
color: #667eea;
}
.fonda-form {
width: 100%;
}
.form-header {
margin-bottom: 30px;
}
.form-header h3 {
font-size: 1.8rem;
margin-bottom: 10px;
color: #333;
}
.fonda-form-group {
margin-bottom: 25px;
}
.fonda-form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #555;
}
.fonda-form-group input,
.fonda-form-group textarea {
width: 100%;
padding: 15px;
border: 2px solid #e9ecef;
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s ease;
}
.fonda-form-group input:focus,
.fonda-form-group textarea:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.fonda-form-group textarea {
resize: vertical;
min-height: 120px;
}
.fonda-btn {
padding: 15px 30px;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
text-align: center;
}
.fonda-btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.fonda-btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
.faq-section {
background: white;
border-radius: 12px;
padding: 40px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.faq-section h3 {
font-size: 2rem;
margin-bottom: 30px;
text-align: center;
color: #333;
}
.faq-item {
border-bottom: 1px solid #eee;
padding: 25px 0;
}
.faq-item:last-child {
border-bottom: none;
}
.faq-question {
font-size: 1.2rem;
font-weight: 600;
color: #333;
margin-bottom: 15px;
cursor: pointer;
display: flex;
align-items: center;
}
.faq-question::before {
content: “▶”;
margin-right: 10px;
transition: transform 0.3s ease;
}
.faq-question.active::before {
transform: rotate(90deg);
}
.faq-answer {
color: #666;
line-height: 1.6;
display: none;
padding-left: 25px;
}
.faq-answer.show {
display: block;
animation: fadeIn 0.3s ease;
}
.fade-in {
animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.hero-section h1 {
font-size: 2rem;
}
.fonda-grid-2 {
grid-template-columns: 1fr;
gap: 30px;
}
.fonda-card {
padding: 25px;
}
.fonda-section {
padding: 40px 20px;
}
}
Ready to experience truly autonomous deployments? Our team is here to help you get started with AutonoDeploy AI.
Let’s discuss how AutonoDeploy AI can transform your deployment process.
function toggleFaq(element) {
const answer = element.nextElementSibling;
const isActive = element.classList.contains(‘active’);
// Close all other FAQ items
document.querySelectorAll(‘.faq-question’).forEach(q => {
q.classList.remove(‘active’);
q.nextElementSibling.classList.remove(‘show’);
});
// Toggle current item
if (!isActive) {
element.classList.add(‘active’);
answer.classList.add(‘show’);
}
}
// Add fade-in animation on scroll
const observerOptions = {
threshold: 0.1,
rootMargin: ‘0px 0px -50px 0px’
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add(‘fade-in’);
}
});
}, observerOptions);
document.querySelectorAll(‘.fonda-card, .faq-section’).forEach(el => {
observer.observe(el);
});