/* Base styles for Tripado */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap');

/* Reset and global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #ffffff;
    color: #111;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 98%;
    box-sizing: border-box;
}

/* Common components and UI elements */
.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.btn.primary {
    background: #34B0DC;
    color: #fff;
    border: none;
    padding: 18px 38px;
    font-size: 1.18rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(52, 176, 220, 0.08);
}

.btn.primary:hover {
    background: #2490b8;
    transform: translateY(-2px);
}

.btn.secondary {
    background: #fff;
    color: #34B0DC;
    border: 2px solid #34B0DC;
    padding: 18px 38px;
    font-size: 1.18rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(52, 176, 220, 0.1);
}

.btn.secondary:hover {
    background: #34B0DC;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 176, 220, 0.2);
}

.btn.secondary:active {
    transform: translateY(0);
}

/* Animations and transitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .btn.primary, .btn.secondary {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .btn.primary, .btn.secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
    }
} 