@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* Navbar Styling */
.navbar {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
}

.heart-icon {
    color: #e5322d; /* iLovePDF Red */
    margin-right: 5px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: 500;
}

.signup-btn {
    background-color: #e5322d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header-text {
    text-align: center;
    margin-bottom: 50px;
}

.header-text h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.header-text p {
    font-size: 1.2rem;
    color: #666;
}

/* Section Titles */
.section-title {
    color: #888;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Grid System for Tools */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Individual Tool Card */
.tool-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center; /* Icons center mein */
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #eee;
}

.tool-card h3 {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #333;
}

.tool-card p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Icons Colors matching iLovePDF */
.tool-card i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.icon-red { color: #e5322d; }
.icon-yellow { color: #f4b400; }
.icon-blue { color: #4285f4; }
.icon-green { color: #0f9d58; }
.icon-orange { color: #ff6d00; }