/* ===== AGENTGO UNIFIED STYLES ===== */

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* ===== BACKGROUND & ANIMATIONS ===== */
/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(119, 255, 198, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    animation: float 6s infinite linear;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
}

/* Templates page specific nav background */
.templates-page nav {
    background: rgba(0, 0, 0, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    animation: logoGlow 2s ease-in-out infinite alternate;
    text-decoration: none;
}

@keyframes logoGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

/* Login button in navigation */
.nav-links .login-btn {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000 !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px;
    font-weight: bold;
    margin-left: 1rem;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-links .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
    text-shadow: none;
}

.nav-links .login-btn::after {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ff00);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content p {
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
}

/* ===== HEADER SECTION (Templates page) ===== */
.header {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ff00);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.header p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.btn-training-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.btn-training-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-training-primary:hover::before {
    left: 100%;
}

.btn-training-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.6);
}

.btn-training-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
}

.btn-training-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff00ff;
    color: #ff00ff;
    transform: translateY(-3px);
    text-shadow: 0 0 10px #ff00ff;
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-preview {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.btn-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-preview:hover::before {
    left: 100%;
}

.btn-demo {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff00ff;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

/* ===== FREE TRAINING CTA SECTION ===== */
.free-training-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.free-training-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    animation: trainingGlow 8s ease-in-out infinite;
}

@keyframes trainingGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.training-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.training-content {
    text-align: left;
}

.training-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.training-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.training-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.highlight-free {
    background: linear-gradient(45deg, #00ff00, #00ffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    animation: freeGlow 2s ease-in-out infinite alternate;
}

@keyframes freeGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.3); }
}

.training-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.training-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    color: #00ffff;
}

.feature-item span:last-child {
    color: #ffffff;
    font-weight: 500;
}

.training-cta-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ===== TRAINING VISUAL ===== */
.training-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: circleRotate 20s linear infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 255, 255, 0.3);
    animation-duration: 20s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    border-color: rgba(255, 0, 255, 0.3);
    animation-duration: 15s;
    animation-direction: reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 255, 0, 0.3);
    animation-duration: 10s;
}

@keyframes circleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.training-mockup {
    position: relative;
    z-index: 10;
}

.mockup-screen {
    width: 320px;
    height: 400px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.mockup-header {
    display: flex;
    justify-content: flex-start;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
}

.mockup-content {
    padding: 1rem 0;
}

.chat-bubble {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bubbleAppear 0.5s ease-in-out;
}

@keyframes bubbleAppear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-bubble {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    margin-right: 2rem;
}

.user-bubble {
    background: rgba(255, 0, 255, 0.2);
    border: 1px solid rgba(255, 0, 255, 0.3);
    color: #ffffff;
    margin-left: 2rem;
    justify-content: flex-end;
}

.bubble-icon {
    font-size: 1.1rem;
}

/* ===== TEMPLATES SECTION ===== */
.templates {
    padding: 60px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.template-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
}

.template-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.template-card:hover::before {
    opacity: 1;
}

.template-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: #00ffff;
    box-shadow: 
        0 25px 50px rgba(0, 255, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.1);
}

.template-preview {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.template-icon {
    font-size: 4rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.template-card:hover .template-icon {
    transform: scale(1.1);
    opacity: 1;
}

.template-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.template-category {
    display: inline-block;
    background: linear-gradient(45deg, #ff00ff, #ffff00);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.template-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ffff;
    font-weight: bold;
}

.template-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.template-features {
    margin-bottom: 25px;
}

.template-features ul {
    list-style: none;
    padding: 0;
}

.template-features li {
    color: #aaa;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.template-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-weight: bold;
}

.template-actions {
    display: flex;
    gap: 15px;
}

/* Industry colors for icons */
.medical { color: #ff4757; }
.architecture { color: #3742fa; }
.legal { color: #ffa502; }
.consulting { color: #2ed573; }
.hotel { color: #ff6b81; }
.logistics { color: #f39c12; }
.manufacturing { color: #9c88ff; }

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00ffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: rgba(255, 255, 255, 0.02);
    padding: 100px 50px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff00ff;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.benefit-item {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-left: 4px solid #00ffff;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: -10px 0 30px rgba(0, 255, 255, 0.2);
}

.benefit-item h4 {
    color: #ffff00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    padding: 80px 50px;
    text-align: center;
    margin-top: 60px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
    background: #000000;
    padding: 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .services {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .training-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
        text-align: center;
    }

    .training-content {
        text-align: center;
    }

    .training-title {
        font-size: 2.2rem;
    }

    .training-features {
        grid-template-columns: 1fr;
    }

    .training-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .training-visual {
        height: 400px;
    }

    .mockup-screen {
        width: 280px;
        height: 350px;
    }

    .circle-1 {
        width: 250px;
        height: 250px;
    }

    .circle-2 {
        width: 180px;
        height: 180px;
    }
    
    .templates {
        padding: 30px 20px 60px;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .template-actions {
        flex-direction: column;
    }

}