/* Genel Stil Ayarları */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; box-sizing: border-box; line-height: 1.6; color: #333; } /* Hero Bölümü */ .hero-section { background: #00264d; color: white; padding: 60px 20px; text-align: center; } .hero-section h1 { font-size: 2.5em; margin-bottom: 10px; } .hero-section p { font-size: 1.2em; margin-bottom: 20px; } .cta-button { display: inline-block; padding: 10px 20px; background: #ffc107; color: #00264d; text-decoration: none; border-radius: 5px; font-weight: bold; } /* Kategoriler Bölümü */ .categories-section { padding: 40px 20px; background: #f8f8f8; } .categories-section h2 { text-align: center; margin-bottom: 20px; } .category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } .category-card { background: white; border: 1px solid #ddd; border-radius: 5px; padding: 20px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); text-align: center; } .category-card h3 { margin-bottom: 10px; font-size: 1.2em; color: #00264d; } .category-card p { margin-bottom: 15px; font-size: 0.9em; color: #555; } .details-button { display: inline-block; padding: 10px 15px; background: #00264d; color: white; text-decoration: none; border-radius: 5px; font-size: 0.9em; } .details-button:hover { background: #ffc107; color: #00264d; } /* Footer */ .footer { background: #00264d; color: white; text-align: center; padding: 10px 20px; }
top of page
bottom of page